-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
79 lines (79 loc) · 2.72 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Get real authentic, hand-crafted guitars from Guitar Kings" />
<title>Guitar Kings | Home</title>
</head>
<body>
<header>
<a href="index.html">Guitar Kings</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="guitars.html">Guitars</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<section>
<h1>Authentic Handmade Guitars</h1>
<a href="guitars.html">View Guitars</a>
</section>
</header>
<main>
<section>
<div>
<h2>Our Guitars Are:</h2>
<ul>
<li>Made with real Pennsylvanian wood</li>
<li>Crafted by a family-run business</li>
<li>Built to last a lifetime</li>
<li>Beautiful unique sound</li>
<li>Options for all music lovers</li>
</ul>
</div>
<img src="images/home-info.jpg" alt="Hand strumming guitar" />
</section>
<section>
<h2>Reviews</h2>
<div>
<p>"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse quis dictum elit. In hac habitasse platea dictumst." - Bob Willis</p>
<img src="images/review-bio.jpg" alt="Profile picture of Bob Willis" />
</div>
<div>
<p>"Maecenas interdum, erat nec pulvinar euismod, eros erat ornare mauris, commodo vestibulum odio nunc id urna. Sed volutpat consequat dolor, nec sollicitudin elit eleifend vitae." - Sally Oldfield</p>
<img src="images/review-bio2.jpg" alt="Profile picture of Bob Willis" />
</div>
</section>
<section>
<h2>View Our Guitars</h2>
<div>
<img src="images/product.jpg" alt="Adirondack Red" />
<h3>Adirondack Red</h3>
<p>$500</p>
<a href="products/adirondack-red.html">View</a>
</div>
<div>
<img src="images/product.jpg" alt="Adirondack Red" />
<h3>Adirondack Red</h3>
<p>$500</p>
<a href="products/adirondack-red.html">On sale</a>
</div>
<div>
<img src="images/product.jpg" alt="Adirondack Red" />
<h3>Adirondack Red</h3>
<p>$500</p>
<a href="products/adirondack-red.html">View</a>
</div>
<div>
<img src="images/product.jpg" alt="Adirondack Red" />
<h3>Adirondack Red</h3>
<p>$500</p>
<a href="products/adirondack-red.html">View</a>
</div>
</section>
</main>
<footer>Copyright ©</footer>
</body>
</html>