-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (101 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Click Travel</title>
</head>
<body>
<div
style="
background-color: beige;
display: flex;
justify-content: space-between;
"
>
<div>
<img
src="assets/images/logo.png"
style="width: 111px; margin-left: 5%"
/>
</div>
<div>
<ul style="display: flex; list-style: none">
<li
style="
border: 2px solid black;
margin-right: 2%;
font-size: 24px;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(255, 254, 254, 0.5);
"
>
<a href="index.html">Home</a>
</li>
<li
style="
border: 2px solid black;
margin-right: 5%;
font-size: 24px;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(255, 254, 254, 0.5);
"
>
<a href="form.html">Course</a>
</li>
<li
style="
border: 2px solid black;
margin-right: 2%;
font-size: 24px;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(255, 254, 254, 0.5);
"
>
<a href="animal.html">Animals</a>
</li>
<li
style="
border: 2px solid black;
margin-right: 2%;
font-size: 24px;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(255, 254, 254, 0.5);
"
>
<a href="webpage.html">Webpage</a>
</li>
</ul>
</div>
</div>
<div
style="
position: relative;
width: 100%;
height: 464px;
background-image: url('https://www.pixelstalk.net/wp-content/uploads/2015/05/Plane-on-the-beach.jpg');
background-size: cover;
background-position: center;
"
>
<div
style="
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: rgb(205, 139, 139);
font-size: 24px;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
"
>
<a
href="contact.html"
style="color: navy; background: rgb(111, 207, 223)"
>Contact to live your dream</a
>
</div>
</div>
</body>
</html>