forked from CSE110-W2021/Lab6_CSE110Shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.54 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSE 110 Shop</title>
<link rel="stylesheet" href="./styles/styles.css">
</head>
<header>
<!-- Nav Bar -->
<nav>
<!-- Home Icon -->
<div class="logo">
<span class="icon" id="shop-icon"></span>
<span class="title"><a href="/index.html">CSE 110 Shop</a></span>
</div>
<div class="nav-link">
<p> Cart
<span class="icon" id="cart-icon"></span>
<span id='cart-count'>0</span>
</p>
</div>
</nav>
</header>
<body>
<main class="container">
<!-- Welcome Text -->
<h1> Welcome to the CSE 110 Shop! </h1>
<!-- Product List -->
<ul class="flex-container" id="product-list">
<!-- Sample Product -->
<!-- li class="product">
<img src="https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg" alt="Fjallraven - Foldstack No. 1 Backpack, Fits 15 Laptops" width=200>
<p class="title">Fjallraven - Foldstack No. 1 Backpack, Fits 15 Laptops</p>
<p class="price">$109.95</p>
<button onclick="alert('Added to Cart!')">Add to Cart</button>
</li -->
</ul>
</main>
<script src="./components/product-item.js"></script>
<script src="./scripts/script.js" ></script>
</body>
</html>