-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (112 loc) · 3.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<title style="">Yatra</title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)),
url(bg1.jpg);
background-size: cover;
}
a.btn:hover {
transform: scale(1.2);
box-shadow: 0 0 60px #fff;
}
</style>
<link rel="icon" type="image/x-icon" href="favicon1.jpeg">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark">
<a
class="navbar-brand"
href="#"
style="font-size: 40px; letter-spacing: 10px; margin-left: 30px"
>Yatra</a
>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse"
style="position: absolute; right: 40px"
id="navbarSupportedContent"
>
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link mx-2" href="#"
>Home <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item">
<a class="nav-link mx-2" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link mx-2" href="#">Our Stays</a>
</li>
<li class="nav-item">
<a class="nav-link mx-2" href="#">Best Offers</a>
</li>
<li class="nav-item">
<a class="nav-link mx-2" href="#">Contact Us</a>
</li>
</ul>
</div>
</nav>
<div
class=""
style="
font-size: 30px;
color: white;
text-align: center;
letter-spacing: 5px;
margin-top: 160px;
margin-bottom: 0;
"
>
<span style="font-weight: 800">Feed the</span>
<span style="font-size: 120px; font-weight: lighter">Wanderlust</span>
<span style="font-weight: 800">in You.</span> <br />
<span style="letter-spacing: 3px; font-size: 15px; margin: 0 padding:0; ">
Travel far enough, you meet yourself.</span
>
</div>
<div class="text-center">
<a
href="#life"
class="btn"
style="
color: white;
width: 300px;
border: solid;
border-color: white;
margin-top: 50px;
letter-spacing: 15px;
font-weight: bold;
"
>
EXPLORE</a
>
</div>
</body>
</html>