-
Notifications
You must be signed in to change notification settings - Fork 2
/
productDetails.html
29 lines (28 loc) · 1.11 KB
/
productDetails.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
<!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>Product Details Page</title>
<link rel="stylesheet" href="./Styles/productDetails.css" />
<link rel="stylesheet" href="./Styles/navbar.css">
<link rel="stylesheet" href="./Styles/footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="navbarmain"></div>
<div id="belowNavbar">
<h2>Amazon Prime-linked VIPs earn 2 points per $1 spent on Zappos. <a href="">Learn More</a></h2>
<p> ✨Earn Zappos VIP points worth up to $12.50 in VIP codes on this item. <a href="">Join today to start earning!</a></p>
</div>
<div id="productDetails"></div>
<hr />
<div id="recent">
<h1>Your Recently Viewed Items</h1>
<div id="recentView"></div>
</div>
<div id="footermain"></div>
</body>
</html>
<script src="./Scripts/productDetails.js" type="module"></script>