-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (87 loc) · 1.71 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
<html>
<head>
<style>
div{
margin-top: 20px;
}
body{
background-image:linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.3)), url(travelscape/firstpage/1.jpg);
background-size: cover;
background-position: center;
}
.heading{
position: absolute;
top:50%;
left:50%;
font-size: 40px;
transform: translate(-50%,-50%);
color: white;
font-family:candara;
}
.tagline{
position: absolute;
top:55%;
left:41%;
font-size: 25px;
color: white;
font-family:candara;
}
.btn{
position: absolute;
top:75%;
left:41%;
}
.button {
background-color: transparent;
border: none;
color: white;
text-align: center;
font-size: 35px;
cursor: pointer;
font-family: candara;
}
.button span {
cursor: pointer;
padding: 5px 15px;
display: inline-block;
position: relative;
transition: 0.6s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
div.button a{
color:white;
transition: .6s ease;
}
div.button a:active{
color:white;
}
</style>
<title>First page</title>
<head>
<body>
<div>
<img src="travelscape/logo/logo.png" align="left" height="150" width="250">
</div>
<div class="heading"><h1>
TRAVELSCAPE
</h1></div>
<div class="tagline">
Dream. Explore. Discover.
</div>
<div class="btn">
<div class="button"><a href="travelscape/home.html"><span>Let's get started</span></a></div>
</div>
</body>
</html>