-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (74 loc) · 2.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ayurveda Online</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<style>
body {
background: url("images/landing\ page\ background\ 2.png") no-repeat center center fixed;
background-size: cover;
}
#main {
margin: 0;
margin-top: 180px;
width: fit-content;
border-bottom: 2px solid yellow;
font-size: 230%;
color: #0a043c;
margin-left: auto;
margin-right: auto;
}
#down {
margin: 0;
display: flex;
justify-content: center;
color: #0a043c;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
#btn {
background-color: #0a043c;
color: white;
width: fit-content;
padding: 15px;
border-radius: 50px;
margin-left: auto;
margin-right: auto;
margin-top: 100px;
}
#btn:hover {
transition: all 1s;
cursor: pointer;
box-shadow: 0px 0px 10px 10px #0e49b5;
}
img {
width: 200px;
height: 200px;
}
@media (max-width: 410px) {
body {
text-align: justify;
}
#main {
font-size: 190%;
}
}
@media (max-width: 270px) {
#main {
font-size: 160%;
}
}
</style>
</head>
<body>
<p id="main">AYURVEDA ONLINE</p>
<p id="down">Ayurveda is practised in its most authentic and pure form</p>
<a href="index1.html"><p id="btn">Explore More</p></a>
</body>
</html>