-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathindex.html
43 lines (35 loc) · 1.41 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 lang="en">
<head>
<meta charset="utf-8" />
<title>Bikes!</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<nav id="main-navigation">
<ul>
<li><a href="#" class="current">Bikes</a></li>
<li><a href="#">Best Buy</a></li>
<li><a href="#">Offers</a></li>
<li><a href="#">Accessories</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">About Us</a></li>
</ul>
</nav>
<div id="lead-banner">
<img src="images/lead-banner.jpg" alt="Bikes!">
</div>
<section id="shop">
<img class="product-image" src="images/bike.jpg" alt="RetroSyperb image">
<h2 class="product-name">Bicycle RetroSyperb Vii #1</h2>
<span class="price">299.99$</span>
<a class="add-to-bag" href="#">Add to shopping basket</a>
<img class="rating" src="images/stars.png" alt="star-rating">
</section>
<div id="footer-banner">
<img src="images/footer.jpg" alt="pic of bike">
</div>
</div>
</body>
</html>