-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravel.html
174 lines (169 loc) · 5.85 KB
/
travel.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<!-- Normalize styles across browsers -->
<link href="css/reset.css" rel="stylesheet" />
<!-- Custom styles -->
<link href="css/styles.css" rel="stylesheet" />
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/cbbaf4368b.js"
crossorigin="anonymous"
></script>
<!-- jQuery -->
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"
></script>
<!-- Custom JS -->
<script src="js/scripts.js" defer></script>
<title>Travel</title>
</head>
<body class="p-home">
<a id="skip-to-main" href="#main-content">Skip to Main Content</a>
<header id="header">
<h1 class="title--with-icon">
<i class="fa-solid fa-plane fa-sm"></i> Travel
</h1>
<nav id="nav">
<div class="nav">
<a class="nav__action" href="index.html">
<span class="nav__action__txt">Pets</span>
</a>
<a class="nav__action" href="travel.html" aria-current="page">
<span class="nav__action__txt">Travel</span>
</a>
<a class="nav__action" href="recipes.html">
<span class="nav__action__txt">Recipes</span>
</a>
</div>
<div class="dropup">
<button
class="dropup__btn"
title="Navigation"
aria-label="Navigation"
>
<span>
<i class="fa-solid fa-plane dropup__btn__txt-icon"></i> Travel
</span>
<span class="dropup__btn__icon">
<i class="fa-solid fa-chevron-up"></i>
</span>
</button>
<div class="dropup__list-container">
<ul class="dropup__list">
<li>
<a class="dropup__list__action" href="index.html">
<i class="fa-solid fa-paw fa-sm"></i> Pets
</a>
</li>
<li class="dropup__list__item--selected">
<a
class="dropup__list__action"
href="travel.html"
aria-current="page"
>
<i class="fa-solid fa-plane fa-sm"></i> Travel
</a>
</li>
<li>
<a class="dropup__list__action" href="recipes.html">
<i class="fa-solid fa-utensils fa-sm"></i> Recipes
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main id="main-content">
<div class="home-grid">
<a class="home-grid__item" href="travel/0-berlingermany.html">
<figure class="home-grid__figure">
<!-- Decorative blur effect -->
<img
class="img-blur-decor"
src="images/travel/berlin-brandenburg-gate.jpg"
alt=""
/>
<div class="home-grid__img-container">
<img
src="images/travel/berlin-brandenburg-gate.jpg"
alt="The Brandenburg Gate in Berlin, Germany."
/>
</div>
<figcaption>Berlin, Germany</figcaption>
</figure>
<!-- Eric Xu -->
</a>
<a class="home-grid__item" href="travel/1-seoulsouthkorea.html">
<figure class="home-grid__figure">
<!-- Decorative blur effect -->
<img
class="img-blur-decor"
src="images/travel/seoul-night.jpg"
alt=""
/>
<div class="home-grid__img-container">
<img
src="images/travel/seoul-night.jpg"
alt="Lights from buildings and cars illuminate the night sky."
/>
</div>
<figcaption>Seoul, South Korea</figcaption>
</figure>
<!-- Claire Callen and Malwine Fischer -->
</a>
<a class="home-grid__item" href="travel/2-apostleislandswisconsin.html">
<figure class="home-grid__figure">
<!-- Decorative blur effect -->
<img
class="img-blur-decor"
src="images/travel/apostle-islands.jpg"
alt=""
/>
<div class="home-grid__img-container">
<img
src="images/travel/apostle-islands.jpg"
alt="A view of the Apostle Islands from the water."
/>
</div>
<figcaption>Apostle Islands, Wisconsin</figcaption>
</figure>
<!-- Michelle Lockett (edited by Eric Xu) -->
</a>
<a
class="home-grid__item"
href="travel/3-ebenalpmountainswitzerland.html"
>
<figure class="home-grid__figure">
<!-- Decorative blur effect -->
<img
class="img-blur-decor"
src="images/travel/ebenalp-seealpsee-lake.jpeg"
alt=""
/>
<div class="home-grid__img-container">
<img
src="images/travel/ebenalp-seealpsee-lake.jpeg"
alt="Small lake framed by forest on the left and mountains on the right. A mountain stands in the background."
/>
</div>
<figcaption>Ebenalp Mountain, Switzerland</figcaption>
</figure>
<!-- Elijah Cantu (edited by Eric Xu) -->
</a>
</div>
</main>
</body>
</html>