-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublicPlaceList.html
38 lines (37 loc) · 1.57 KB
/
publicPlaceList.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="static/css/publicPlaceList.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet">
<title>Select Category - TripMate</title>
<link rel = "icon" href = "static/img/tripmate-logo.png" type = "image/x-icon">
</head>
<body>
<div class="navBar">
<div class="logoBlock">
<img class="logoIcon" src="static/img/tripmate-logo.png">
<p class="tripmateName">TripMate</p>
</div>
<div class="sidenav">
<div class="closebtn"><a href="javascript:void(0)" onclick="closeNav()">✕</a></div>
<a href="form.html" class="dropDownElement">Location Menu</a>
<a href="#" class="dropDownElement">About</a>
<a href="#" class="dropDownElement">FAQs</a>
<a href="#" class="dropDownElement">Contact Us</a>
</div>
<div class="navSlideMenu" onclick="openNav()">
<p>☰</p>
</div>
</div>
<div class = "flex-container containerBox">
<!--<div class = "categoryBox">
<img class = "categoryIcon" src="../../static/img/park256.png">
<p class = "categoryLabel">PARK</p>
</div>-->
</div>
<script type="text/javascript" src="static/js/publicPlaceList.js"></script>
</body>
</html>