-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavorites.html
More file actions
164 lines (159 loc) · 5.53 KB
/
Copy pathfavorites.html
File metadata and controls
164 lines (159 loc) · 5.53 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
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
<!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" />
<meta
name="description"
content="I named some of my always go-to places and mentioned their locations in case you wanted to go and discover them by yourself."
/>
<title>
A selecttion of my favorite and safe spots around Auckland, New Zealand |
ExploreAuckland.com
</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<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=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/src/styles.css" />
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"
></script>
<script
src="https://kit.fontawesome.com/75d7172666.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="container">
<nav class="d-flex justify-content-between">
<a href="/" title="Explore Auckland">
<h4 class="d-none d-md-block">
<img
src="/images/auckland-icon.png"
alt="Auckland logo"
class="logo"
/>
Explore Auckland
</h4>
<img
src="/images/auckland-icon.png"
alt="Auckland logo"
class="logo d-block d-md-none"
/>
</a>
<ul>
<li><a href="/" title="Homepage">Home</a></li>
<li class="active">
<a href="/favorites.html" title="My Favorite spots">Favorites</a>
</li>
<li><a href="/about.html" title="About Me">About</a></li>
<li><a href="/contact.html" title="Contact me">Contact</a></li>
</ul>
</nav>
</div>
<div class="hero">
<h1>My Favorite Spots</h1>
<p>in Auckland, New Zealand</p>
</div>
<div class="container">
<div class="row mt-5">
<div class="col-md-6 mb-4">
<img
src="/images/western-park.jpg"
alt="Western park photo"
class="img-fluid rounded shadow mb-3"
/>
<h3 class="text-center mb-1 p-0">Western Park</h3>
<p class="text-center text-muted m-0 p-0">📍 Freemans Bay</p>
</div>
<div class="col-md-6 mb-4">
<img
src="/images/devonport.jpg"
alt="King Edward Parade Reserve photo"
class="img-fluid rounded shadow mb-3"
/>
<h3 class="text-center mb-1 p-0">King Edward Parade Reserve</h3>
<p class="text-center text-muted m-0 p-0">📍 Devonport</p>
</div>
<div class="col-md-6 mb-4">
<img
src="/images/central-library.jpg"
alt="Central City Library photo"
class="img-fluid rounded shadow mb-3"
/>
<h3 class="text-center mb-1 p-0">Central City Library</h3>
<p class="text-center text-muted m-0 p-0">📍 Auckland CBD</p>
</div>
<div class="col-md-6 mb-4">
<img
src="/images/whitcoulls.jpg"
alt="Whitcoulls photo"
class="img-fluid rounded shadow mb-3"
/>
<h3 class="text-center mb-1 p-0">Whitcoulls</h3>
<p class="text-center text-muted m-0 p-0">📍 Shopping Malls</p>
</div>
</div>
<footer>
<div
class="contact-box d-flex justify-content-between mb-5 d-none d-md-flex"
>
<div>
<h4>Get in touch</h4>
<p class="text-muted">Let's have a cup of coffee!</p>
</div>
<div>
<a
href="/contact.html"
class="btn btn-branding mt-2"
title="Contact me"
>Contact me</a
>
</div>
</div>
<div class="d-flex justify-content-center mb-0">
<p class="email-link">Find me here</p>
</div>
<div class="social-links d-flex justify-content-center">
<a
href="https://github.com/ladyincodes"
target="_blank"
title="GitHub Account"
><i class="fa-brands fa-github"></i
></a>
<a
href="https://Twitter.com/ladyincodes"
target="_blank"
title="Twitter Account"
><i class="fa-brands fa-twitter"></i
></a>
<a href="mailto:eskafiati@gmail.com" target="_blank" title="Email me"
><i class="fa-regular fa-envelope"></i
></a>
</div>
<hr class="mt-5" />
<p class="text-center footer-msg">
<a
href="https://github.com/ladyincodes/ExploreAuckland"
target="_blank"
title="Check project on GitHub"
>Open-Source Code</a
>
by Atefeh Eskafi.
</p>
</footer>
</div>
</body>
</html>