-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdestinations.html
126 lines (125 loc) · 4.39 KB
/
destinations.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
<!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>Destinations</title>
<link
href="https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
/>
<link rel="stylesheet" href="CSS/info-page.css" />
<link rel="stylesheet" href="CSS/destinations.css" />
</head>
<body>
<section class="hero is-fullheight is-flex">
<div class="hero-head">
<div class="columns is-mobile is-marginless">
<div class="column left is-flex">
<div class="navbar-brand is-align-content-center">
<a class="navbar-item" href="index.html">
<i class="fa fa-globe" aria-hidden="true"></i>
</a>
</div>
</div>
<div class="column center">
<div id="navbar" class="navbar-menu">
<a class="navbar-item" href="info-page.html"> Home </a>
<a class="navbar-item" href="about.html"> About </a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link is-active"> Destinations </a>
<div class="navbar-dropdown">
<a class="navbar-item is-active" href="destinations.html">
Visit Locations!
</a>
<hr class="navbar-divider" />
<a class="navbar-item" href="new-entries.html">
New Entries
</a>
</div>
</div>
<a class="navbar-item" href="map.html"> Map </a>
<a class="navbar-item" href="editpage.html"> Edit Page </a>
</div>
</div>
<div class="column right is-flex is-justify-content-flex-end">
<div class="navbar-item desktop">
<span class="icon">
<a
target="_blank"
href="https://www.linkedin.com/in/mar%C3%ADa-agustina-carri%C3%B3n-cresta/"
>
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</span>
<span class="icon">
<a target="_blank" href="https://www.instagram.com/codingtina/">
<i class="fa fa-instagram" aria-hidden="true"></i
></a>
</span>
<span class="icon">
<a
target="_blank"
href="https://www.facebook.com/agustina.carrion"
>
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</span>
<span class="icon">
<a target="_blank" href="https://twitter.com/agus_carrion_">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</span>
</div>
<div class="navbar-brand">
<a
role="button"
class="navbar-burger"
aria-label="menu"
aria-expanded="false"
data-target="navbar"
href="./info-page.html"
>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
</div>
</div>
</div>
<div class="hero-body is-flex-direction-column">
<h1
style="
font-family: 'Nanum Pen Script', cursive;
font-size: 70px;
color: #363636;
"
>
Where I've been!
</h1>
<div class="columns is-multiline" id="cardContainer"></div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Tina's Travel Blog</strong> by
<a target="_blank" href="https://github.com/Agustina-Carrion"
>Agustina Carrion</a
>.
</p>
</div>
</footer>
<script src="./JS/destinations.js"></script>
</body>
</html>