-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
47 lines (41 loc) · 2.47 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Santa Clara Swap</title>
<link rel="stylesheet" href="styles.css">
<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=Jomhuria&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap" rel="stylesheet">
</head>
<body onload="createCards()">
<center>
<script></script>
<ul id="navbar">
<li class="small-circle"><img src="H4H-logo.png" class="image-on-small-circle" alt="Image on circle"></li>
<li class="title jomhuria-regular" onclick="window.location.href='index.html'">Santa Clara Swap</li>
<li class="newsreader-400" style="float:right; padding-top: 10px;" id="login"><a href="login.html" class="last-button">Login</a></li>
<li class="newsreader-400" style="float:right; padding-top: 10px;" id="signup"><a href="signup.html">Sign Up</a></li>
<li class="newsreader-400" style="float:right; padding-top: 10px;"><a href="cart.html">Cart</a></li>
<li class="newsreader-400" style="float:right; padding-top: 10px;"><a href="post.html">Sell</a></li>
<li class="newsreader-400" style="float:right; padding-top: 10px;"><a class="active" href="shop.html">Shop</a></li>
</ul>
<hr>
<ul>
<li class="jomhuria-regular title" style="font-size: 60px; color: black;">Shop</li>
</ul>
<section class="cards" id="cards">
<!-- This is where the cards will be added -->
</section>
</center>
<!-- Link to Firebase -->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.10.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.10.0/firebase-storage.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.10.0/firebase-auth.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>