forked from weingeoffrey/caffinate-the-city
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reviews.html
75 lines (73 loc) · 3.68 KB
/
reviews.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<link rel="stylesheet" type="text/css" href="https://js.api.here.com/v3/3.1/mapsjs-ui.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="assests/css/style.css">
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-core.js"></script>
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-service.js"></script>
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-ui.js"></script>
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-mapevents.js"></script>
</head>
<body>
<div class="bg-img">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-start topnav">
<a href="index.html" class="navbar-item">Home</a>
<a href="reviews.html">Reviews</a>
<a href="contactus.html" class="navbar-item">Contact Us</a>
</div>
</nav>
</div>
<header id="reviewsTitle">MY OPINIONS</header>
<form id="userEntryBox">
<br>
<label for="shop-name">Coffee Shop:</label>
<input type="text" id="shop-name"/>
<label for="NTS">My Notes: </label>
<input type="text" id="NTS"/>
<label for="stars">How many stars do you give this shop?</label>
<input type="text" id="stars"/>
</form>
<br>
<input onclick=getUserValues() type="submit" value="Submit">
<br>
<p id="shop-name"></p>
<p id="arrayTest"></p>
<p1 id="arrayTest2"> <br> </p1>
<!-- CARD -->
<!-- <div class="card">
<header class="card-header">
<p id="shop-name" class="card-header-title"></p>
<button class="card-header-icon" aria-label="more options">
DROP DOWN ARROW OPTIONAL <span class="icon">
<i class="fas fa-angle-down" aria-hidden="true"></i>
</span> -->
<!-- </button>
</header>
<div class="card-content">
<div class="content">
<a href="#"></a> <a href="#"></a> <a href="#"></a>
<br>
<time datetime="2016-1-1"></time>
</div>
</div> -->
<!-- OPTIONAL FOOTER <footer class="card-footer">
<a href="#" class="card-footer-item">Save</a>
<a href="#" class="card-footer-item">Edit</a>
<a href="#" class="card-footer-item">Delete</a>
</footer> -->
<!-- </div>
<div class = "cardAppend"></div> -->
<div class="footer">
<p> © 2021 Geoffrey, Jason, Justin, and Noor. ©Header image Dmitry Kostyukov for The New York Times </p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="assests/js/script.js"></script>
<script src="assests/js/reviews.js"></script>
</body>
</html>