-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
89 lines (88 loc) · 3.22 KB
/
products.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!--
=========================================================
Name: products.html
Assignment 2
Authors: Joshua Maher (30148153), Yuecheng Sun (30180767)
Submission: Mar 11, 2024
=========================================================
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Products</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<script src="products.js"></script>
</head>
<body>
<header>
<img class="header-logo" src="images/logo.png" alt="A-band logo">
<span class="header-company-name">A-Band</span>
</header>
<div class="navigation-bar">
<a class="navigation-bar-link" href="index.html">Home</a>
<a class="navigation-bar-link" href="products.html">Products</a>
<a class="navigation-bar-link" href="contact.html">Contact</a>
<a class="navigation-bar-link" href="login.html">Login</a>
</div>
<main class="products-list" id="main">
<div class="product">
<img src="images/violin.png" alt="Violin image">
<h2 class="product-name">Violin</h2>
<p class="product-price">$899.99</p>
<button class="add-to-cart" type="button">Add to cart</button>
</div>
<div class="product">
<img src="images/guitar.png" alt="Guitar image">
<h2 class="product-name">Guitar</h2>
<p class="product-price">$599.99</p>
<button class="add-to-cart" type="button">Add to cart</button>
</div>
<div class="product">
<img src="images/drum_set.png" alt="Drum_set image">
<h2 class="product-name">Drum Set</h2>
<p class="product-price">$1299.99</p>
<button class="add-to-cart" type="button">Add to cart</button>
</div>
<div class="product">
<img src="images/piano.png" alt="Piano image">
<h2 class="product-name">Piano</h2>
<p class="product-price">$1099.99</p>
<button class="add-to-cart" type="button">Add to cart</button>
</div>
<div class="product">
<img src="images/electric_guitar.png" alt="Electric guitar image">
<h2 class="product-name">Electric Guitar</h2>
<p class="product-price">$699.99</p>
<button class="add-to-cart" type="button">Add to cart</button>
</div>
<div class="product">
<img src="images/trumpet.png" alt="Trumpet image">
<h2 class="product-name">Trumpet</h2>
<p class="product-price">$599.99</p>
<button class="add-to-cart" type="button">Add to cart</button>
</div>
<div class="product">
<img src="images/saxophone.png" alt="Saxophone image">
<h3 class="product-name">Saxophone</h3>
<p class="product-price">$749.99</p>
<button class="add-to-cart" type="button">Add to cart</button>
</div>
<div class="product">
<img src="images/flute.png" alt="flute image">
<h2 class="product-name">Flute</h2>
<p class="product-price">$399.99</p>
<button class="add-to-cart" type="button">Add to cart</button>
</div>
<div class="shopping-cart-list">
<h2>Shopping Cart</h2>
<div class="shopping-cart-items">
</div>
</div>
</main>
<footer>
<p>© 2024 A-band co. All rights reserved</p>
</footer>
</body>
</html>