-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproductpage.html
42 lines (42 loc) · 1.45 KB
/
productpage.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
<!doctype html>
<html>
<head>
<link rel="shortcut icon" type="image/x-icon" href="claw.png"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="productpage.css" >
<title>Search Results</title>
<meta name="viewport" content="width=device-width, intial-scale=1">
</head>
<body>
<!-- NAVIGATION BAR -->
<div class="all">
<div class="navigation-bar-container">
<div class="navigation-bar">
<ul>
<li id="logo-text"><a href="index.html">PAWBOOKS</a></li>
</ul>
</div>
</div>
<!-- PRODUCT PAGE TITLE -->
<div id="productpage" class="productpage-content">
<h class="productpage-title" id="title"></h>
<!-- <br><br><br><br> -->
<!-- <hr> -->
</div>
<!-- PARALLAX -->
<!-- <div class="parallax1"></div> -->
<!-- LISTINGS -->
<div class="listings">
<h class="listings-heading"></h>
<!-- <h class="productpage-text">Offers</h> -->
<div class="grid-container" id="productGrid"></div>
</div>
<br><br><br>
</div>
<div class="parallax2"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/instantsearch.min.js"></script>
<script src="https://cdn.jsdelivr.net/algoliasearch/3/algoliasearch.min.js"></script>
<script src="productpage.js"></script>
<script src="parallax.js"></script>
</body>
</html>