-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (82 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Travel Goals</title>
<link href="styles.css" rel="stylesheet" />
<link href="shared.css" rel="stylesheet" />
<link rel="stylesheet" href="/places.html" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,700;1,300&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@700&family=Oleo+Script:wght@700&family=Quicksand:wght@300;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<div id="page-logo">
<a href="/index.html">Travel Goals</a>
</div>
<nav>
<ul>
<li><a href="/places.html">Places</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<div id="hero-content">
<h1>Bharat's Travel Page</h1>
<p>Explore the world together!</p>
<a href="/places.html">Discover More</a>
</div>
</section>
<section id="highlights">
<h2>Highlights</h2>
<ul id="destinations">
<li class="destination">
<img
src="/images/places/miami.jpg"
alt="Miami street on shinning day"
/>
<p>Miami <strong>USA</strong></p>
</li>
<li class="destination">
<img
src="/images/places/munich.jpg"
alt="Munich Stadium in Winter"
/>
<p>Munich <strong>Germany</strong></p>
</li>
<li class="destination">
<img
src="/images/places/barcelona.jpg"
alt="Palm Beach Barcelona"
/>
<p>Barcelona <strong>Spain</strong></p>
</li>
</ul>
</section>
</main>
<footer>
<ul>
<li>
<a href="#"
><img src="/images/icons/facebook.png" alt="facebook link"
/></a>
</li>
<li>
<a href="#"
><img src="/images/icons/insta.png" alt="instagram link"
/></a>
</li>
</ul>
</footer>
</body>
</html>