-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (49 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
61 lines (49 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">\
<link rel="stylesheet" href="stylesheet.css">
<head>
<meta charset="utf-8">
<meta name="author" content="jacob1tx">
<meta name="description" content="List of visited countries">
<title>Country Book</title>
</head>
<style>
.country {
background-color: burlywood;
color: black;
border: 2px solid beige;
margin: 20px;
padding: 20px;
}
#header {
color: black;
padding: 40px;
text-align: center;
}
</style>
<body>
<h1 id="header">Countries and Cities I Have Visited</h1>
<img src="https://static.vecteezy.com/system/resources/previews/005/299/614/original/continuous-line-drawing-of-flying-airplane-single-one-line-art-of-jet-plane-aero-modeling-remote-control-illustration-free-vector.jpg" alt="Airplane line drawing" style="display: block; margin-left: auto; margin-right:auto; width: 50%; opacity: 0.25;">
<div class="country">
<h2>France</h2>
<h3>Paris</h3>
<p>Year visited: 2023</p>
</div>
<div class="country">
<h2>Germany</h2>
<h3>Frankfurt</h3>
<p>Year visited: 2023</p>
</div>
<div class="country">
<h2>Italy</h2>
<h3>Rome</h3>
<p>Year visited: 2017</p>
</div>
<div class="country">
<h2>Greece</h2>
<h3>Athens</h3>
<p>Year visited: 2017</p>
</div>
<a href="https://github.com/jacob1tx">Visit my main github page!</a>
</body>
</html>