-
Notifications
You must be signed in to change notification settings - Fork 0
/
IsR_LandingPage.html
169 lines (150 loc) · 3.92 KB
/
IsR_LandingPage.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Simple landing Page</title>
<script type="text/javascript"></script>
<style type="text/css">
*{
padding: 11px;
margin: 0;
box-sizing: border-box;
clear: both;
background-image: url("");
}
header{
width: 100%;
height: 100vh;
background:linear-gradient(rgba(238, 213, 89, 0.8),rgba(163, 237, 202, 0.2)),url('https://picsum.photos/id/29/4000/2670?grayscale&blur=2') ;
background-size: cover;
}
nav{
width: 100%;
height: 100%;
color: black;
display: flex;
justify-content: space-around;
align-items:normal;
clear: both;
}
.logo{
font-size: 2em;
letter-spacing: 2px;
}
.menu a{
text-decoration:solid ;
color: rgb(12, 8, 43);
padding: 20px 20px;
font-size: 20px;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
position: relative;
border: double;
border-radius: 10px ;
border-color: brown;
background-color: rgb(153, 98, 204);
clear: both;
}
.menu a::before{
content: '';
position: absolute;
top: 0;
top: 0%;
left: 0%;
width: 0%;
height: 100%;
border-bottom: 2px solid indigo;
transition:0.5s linear;
}
.menu a:hover::before{
width: 90%;
}
.login a{
text-decoration:solid dashed;
color: rgb(12, 8, 43);
padding: 20px 20px;
font-size: 20px;
font-family:cursive;
background: indianred;
border-radius: 30px;
transition: 1.16s;
}
.login a:hover{
background: rgb(108, 103, 7);
border: 1px solid rgb(213, 100, 13);
}
.h-txt{
max-width: 600px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-10%,-10%);
text-align: center;
color: rgb(68, 5, 53);
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-style: italic;
font-weight: bold;
clear: both;
}
.h-txt span{
letter-spacing: 6px;
}
.h-txt h1{
font-size: 3.5em;
}
.h-txt a{
text-decoration: wavy;
background: indianred;
color: yellow;
padding: 10px 20px;
letter-spacing: 5px;
transition: 0.10s;
}
.h-txt a:hover{
background:rgb(17, 38, 225);
border: 1px solid rgb(16, 106, 4);
}
.h-txt2{
max-width:200px;
position: absolute;
top: 30%;
left: 30%;
transform: translate(-40%,-10%);
text-align:start;
color: rgb(68, 5, 53);
font-family:cursive;
font-style: italic;
font-weight: bold;
clear: both;
font-size: large;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
WANDERER
</div>
<div class="menu">
<a href="#"> Home</a>
<a href="#">COUNTRIES</a>
<a href="#">Best offer</a>
<a href="#">MORE</a>
<a href="#">CONTACT</a>
</div>
<div class="login">
<a href="#">LOGIN</a>
</div>
<div class="h-txt2">
<h3 >ABOUT US</h3>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quas ad aut laudantium ipsam eum non iste fugiat deserunt impedit quasi tempore ipsa provident vel, aspernatur dignissimos qui alias accusantium! Illum.</div>
</nav>
<section class="h-txt">
<span>BEINVENIDA</span>
<h1>Wanderer transport Agency</h1>
<br>
<a href="#"> Start your journey </a>
</section>
</header>
</body>
</html>