-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmlfinalproject.html
More file actions
131 lines (131 loc) · 5.33 KB
/
Copy pathhtmlfinalproject.html
File metadata and controls
131 lines (131 loc) · 5.33 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
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<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>Final Project</title>
<style>
#head {
text-align: center;
background-color:navy;
position: sticky;
height: 100%;
width: 100%;
color: white;
top: 0;
}
.links {
padding: 70px;
font-size: 35px;
}
.images {
width: 500px;
height: 400px;
}
p {
font-size: 24px;
text-align: center;
background-color: white;
margin: 0;
}
td {
padding: 24px;
}
table {
margin-left: auto;
margin-right: auto;
}
footer {
margin-top: 80px;
margin-bottom: 0%;
position: sticky;
bottom: 0;
box-sizing: border-box;
}
</style>
</head>
<body style="font-family:'Times New Roman', Times, serif;margin: 0;background-color: lightgray;">
<div id="head">
<span class="links"><a href="/htmlfinalproject.html" style="color: white;">TRIPS</a></span>
<span class="links"><a href="/auxiliary1.html" style="color: white;">ABOUT</a></span>
<span class="links"><a href="/auxiliary2.html" style="color: white;">CONTACT</a></span>
</div>
<div style="width: 100%;height:800px;text-align: center;">
<img src="https://imageio.forbes.com/specials-images/dam/imageserve/1171238184/960x0.jpg?format=jpg&width=960" alt="Picture1" height="800px" width="80%"/>
</div>
<div>
<h2 style="text-align: center;font-size: 35px;">Must Visit Places in the World</h2>
<table>
<tr>
<td>
<a href="/details.html#machupichu">
<img class="images" src="https://www.planetware.com/wpimages/2019/09/top-places-to-visit-in-the-world-machu-picchu-peru.jpg" alt="machupichu"/>
<p>Machu Picchu, Peru</p>
</a>
</td>
<td>
<a href="/details.html#greatcanyon">
<img class="images" src="https://www.planetware.com/wpimages/2022/01/world-best-places-to-visit-in-the-world-grand-canyon-snow-patches.jpg" alt="greatcanyon"/>
<p>The Grand Canyon, Arizona</p>
</a>
</td>
<td>
<a href="/details.html#rome">
<img class="images" src="https://www.planetware.com/wpimages/2019/09/top-places-to-visit-in-the-world-rome-italy.jpg" alt="rome" />
<p>Rome, Italy</p>
</a>
</td>
</tr>
<tr>
<td>
<a href="/details.html#hawai">
<img class="images" src="https://www.planetware.com/wpimages/2019/09/top-places-to-visit-in-the-world-maui-hawaii.jpg" alt="hawai" />
<p>Maui, Hawaii</p>
</a>
</td>
<td>
<a href="/details.html#kenya">
<img class="images" src="https://www.planetware.com/wpimages/2019/09/top-places-to-visit-in-the-world-masai-mara-kenya.jpg" alt="kenya" />
<p>Masai Mara, Kenya</p>
</a>
</td>
<td>
<a href="/details.html#newzealand">
<img class="images" src="https://www.planetware.com/wpimages/2019/09/top-places-to-visit-in-the-world-new-zealand.jpg" alt="newzealand" />
<p>New Zealand</p>
</a>
</td>
</tr>
<tr>
<td>
<a href="/details.html#turkey">
<img class="images" src="https://www.planetware.com/wpimages/2019/09/top-places-to-visit-in-the-world-istanbul-turkey.jpg" alt="turkey" />
<p>Istanbul, Turkey</p>
</a>
</td>
<td>
<a href="/details.html#ankorwatt">
<img class="images" src="https://www.planetware.com/wpimages/2022/01/world-best-places-to-visit-in-the-world-cambodia-angkor-wat-stone-faces.jpg" alt="ankorwat" />
<p>Angkor Wat, Cambodia</p>
</a>
</td>
<td>
<a href="/details.html#london">
<img class="images" src="https://www.planetware.com/wpimages/2019/09/top-places-to-visit-in-the-world-london-england.jpg" alt="london" />
<p>London, England</p>
</a>
</td>
</tr>
</table>
</div>
<footer>
<div id="head">
<span class="links"><a href="/htmlfinalproject.html" style="color: white;">TRIPS</a></span>
<span class="links"><a href="/auxiliary1.html" style="color: white;">ABOUT</a></span>
<span class="links"><a href="/auxiliary2.html" style="color: white;">CONTACT</a></span>
</div>
<p>Copyright© 2022</p>
</footer>
</body>
</html>