-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetninja.html
More file actions
39 lines (35 loc) · 1.3 KB
/
Copy pathnetninja.html
File metadata and controls
39 lines (35 loc) · 1.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bikes</title>
<link href="main.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 Us</a></li>
<li><a href="#">About Us</a></li>
</ul>
</nav>
<div id="lead-banner">
<img src="pictures/flyingwings.jpg" alt="wings">
</div>
<section id="shop">
<img class="product-image" src="pictures/adike03.jpg" alt="basket">
<h2 class="product-name">FLYING WINGS</h2>
<span class="price">300$</span>
<a class="add-to-bag" href="#">ADD TO SHOPPING BASKET</a>
<img class="rating" src="pictures/original.jpg" alt="star-wars">
</section>
<div id="footer-banner">
<img src="pictures/footer.jpg" alt="scene1">
</div>
</div>
</body>
</html>