-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@700&family=Oleo+Script:wght@700&family=Quicksand:wght@300;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="shared.css" />
<link rel="stylesheet" href="styles.css" />
<title>Travel Goals</title>
</head>
<body>
<header>
<div id="page-logo">
<a href="/index.html">Travel Goals</a>
</div>
<nav>
<ul>
<li><a href="/places.html">Destinations</a></li>
<li><a href="/about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<div id="hero-content">
<h1>Joe's travel page</h1>
<p>Let's explore the world together!</p>
<a href="/places.html">Discover places</a>
</div>
</section>
<section id="highlights">
<h2>Highlights</h2>
<ul id="destinations">
<li class="destination">
<img
src="/images/places/miami.jpg"
alt="Streets of Miami on a sunny day"
/>
<p>Miami <strong>USA</strong></p>
</li>
<li class="destination">
<img
src="/images/places/munich.jpg"
alt="Aerial photo of the stadium of Munich"
/>
<p>Munich <strong>Germany</strong></p>
</li>
<li class="destination">
<img
src="/images/places/barcelona.jpg"
alt="Palm beach in Barcelona"
/>
<p>Barcelona <strong>Spain</strong></p>
</li>
</ul>
</section>
</main>
<footer>
<ul>
<li>
<a href="https://instagram.com"
><img src="/images/icons/insta.png" alt="Instagram logo"
/></a>
</li>
<li>
<a href="https://facebook.com"
><img src="/images/icons/facebook.png" alt="Facebook logo"
/></a>
</li>
</ul>
</footer>
</body>
</html>