-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (60 loc) · 2.37 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!--
=========================================================
Name: index.html
Assignment 3
Authors: Joshua Maher (30148153), Yuecheng Sun (30180767)
Submission: Mar 11, 2024
=========================================================
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Index</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</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>
<div class="about-us">
<div class="about-us-content">
<h2>About us</h2>
<p>Located in downtown Calgary, we are a local store that can provide the community for all its musical needs.
We offer a wide range of instruments and equipment! If we dont have what you are looking, for feel free to
contact us and we will order it for you. </p>
</div>
</div>
<button class="shop-now" type="button">
<a href="products.html" class="shop-now-content">Shop Now</a>
</button>
<div class="customer-reviews">
<div>
<h2>Customer Reviews</h2>
<dl>
<dt><b>Brandon - 2 Days ago</b></dt>
<dd>Awsome store! Bought an nice guitar from them for my sons birthday, oweners are very friendly! <b>5/5</b></dd><br>
<dt><b>Jenny - 5 Days ago</b></dt>
<dd>Kind workers and a lovely store. <b>5/5</b></dd><br>
<dt><b>Michael - 1 week ago</b></dt>
<dd>Was looking for a specific adaptor but they offered to order in store for me instead. Would still recommend people to look around. <b>4/5</b></dd><br>
<dt><b>Steph - 2 weeks ago</b></dt>
<dd>Came here on opening week to buy some equipment for our school band. Gave us a great deal! <b>5/5</b></dd>
</dl>
</div>
</div>
</main>
<footer>
<p>© 2024 A-Band co. All rights reserved</p>
</footer>
</body>
</html>