-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (123 loc) · 3.53 KB
/
index.html
File metadata and controls
129 lines (123 loc) · 3.53 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Teko&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<style type="text/css">
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
header{
width: 100%;
height: 100vh;
background:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.2)),url("Background.jpg");
background-size: cover;
}
nav{
width: 100%;
height: 100px;
background-size: cover;
color: white;
display: flex;
justify-content: space-around;
align-items: center;
font-family: sans-serif;
}
.logo{
font-size: 2em;
letter-spacing: 2px;
}
.Menu a{
text-decoration: none;
color: white;
padding: 10px 20px;
font-size: 20px;
position: relative;
}
.Menu a:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 0%;
height: 100%;
border-bottom: 2px solid orange;
transition: 0.4s linear;
}
.Menu a:hover:before{
width: 90%;
}
.Register a{
text-decoration: none;
color: white;
padding: 10px 20px;
font-size: 20px;
background: orange;
border-radius: 5px;
transition: 0.4s linear;
}
.Register a:hover{
background: transparent;
border: 1px solid red;
}
.h-txt{
max-width: 650px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
color: white;
}
.h-txt span{
letter-spacing: 5px;
}
.h-txt h1{
font-size: 3.5em;
}
.h-txt a{
text-decoration: none;
background: orange;
color: white;
padding: 15px,25px;
letter-spacing: 5px;
transition: 0.4s linear;
}
.h-txt a:hover{
background: transparent;
border: 1px solid red;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
<b>World-Tour</b>
</div>
<div class="Menu">
<a href="#"><b>Home</b></a>
<a href="#"><b>Hill Stations</b></a>
<a href="#"><b>Best Offer's</b></a>
<a href="#"><b>Contact Us</b></a>
</div>
<div class="Register">
<a href="#">Register</a>
</div>
</nav>
<section class="h-txt">
<span><b>Enjoy</b></span>
<h1><b>International Travel Agency</b></h1>
<br>
<a href="#"><b>Book Your Trip Now</b></a>
</section>
</header>
</body>
</html>