forked from ivnkris/geo-link
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavourites.html
More file actions
96 lines (87 loc) · 3.06 KB
/
favourites.html
File metadata and controls
96 lines (87 loc) · 3.06 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
<!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" />
<title>Geo Link</title>
<!-- Foundation CSS framework -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/css/foundation.min.css"
integrity="sha256-ogmFxjqiTMnZhxCqVmcqTvjfe1Y/ec4WaRj/aQPvn+I="
crossorigin="anonymous"
/>
<!-- Fontawsome -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<div id="page-container">
<div id="content-wrap">
<!--header-->
<header id="header" class="topbar-sticky-shrink-header">
<nav class="top-bar nav-bar-background padding-within">
<div class="top-bar-left">
<div>
<img src="assets/images/logo.png" />
</div>
</div>
<div class="top-bar-right">
<a
class="nav-bar-background text-colour margin-around"
href="index.html"
>Home</a
>
<i class="fas fa-home text-colour"></i>
<a
class="nav-bar-background text-colour margin-around"
href="favourites.html"
>Favourites</a
>
<i class="fas fa-bars text-colour"></i>
</div>
</nav>
</header>
<!-- Info Container -->
<div class="info-container text-colour margin-2 padding-3">
<h2 class="align-center-middle text-center">
"Your world at your fingertips"
</h2>
<p class="align-center-middle text-center">
Welcome to GeoLink !! Get started by entering your location to find
your local events and more...
</p>
</div>
<!--cards container-->
<div class="grid-container">
<div id="cards-container" class="grid-x align-center"></div>
</div>
</div>
<div
id="footer"
class="row grid-x align-center nav-bar-background footer-padding"
>
mindbenders not-yet-Inc. 2021
</div>
</div>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Foundation CSS framework JavaScript -->
<script
src="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/js/foundation.min.js"
integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o="
crossorigin="anonymous"
></script>
<!-- utility functions -->
<script src="./assets/js/utils.js"></script>
<script src="./assets/js/script.js"></script>
<!-- Favourites.html specific script -->
<script src="./assets/js/favourites.js"></script>
</body>
</html>