-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
120 lines (120 loc) · 4.76 KB
/
shop.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cycle bike shop world - Shop</title>
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" href="CSS/normalize.css">
<script type="text/javascript" src="js/contentt.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<a href="/"><li>home</li></a>
<a href="/shop.html"><li>shop</li></a>
<a href="/club.html"><li>club events</li></a>
<a href="/blog.html"><li>blog</li></a>
<a href="/contact.html"><li>contact</li></a>
</ul>
</nav>
<a href="/"><img src="images/cycleWorld.png" alt="Cycle bike shop world"></a>
</header>
<section id="shop">
<h1>Shop</h1>
<form name="searchForm" id="searchForm">
<input type="text" name="search" id="search" /><input type="submit" id="ssubmit" value="Go" />
</form>
<article>
<img src="#" alt="products pic">
<meter min="0" max="5" value="3"></meter>
<h1>product</h1>
<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.</p>
<p>$99.99</p>
</article>
<article>
<img src="#" alt="products pic">
<meter min="0" max="5" value="3"></meter>
<h1>product</h1>
<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.</p>
<p>$99.99</p>
</article>
<article>
<img src="#" alt="products pic">
<meter min="0" max="5" value="3"></meter>
<h1>product</h1>
<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.</p>
<p>$99.99</p>
</article>
<article>
<img src="#" alt="products pic">
<meter min="0" max="5" value="3"></meter>
<h1>product</h1>
<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.</p>
<p>$99.99</p>
</article>
<article>
<img src="#" alt="products pic">
<meter min="0" max="5" value="3"></meter>
<h1>product</h1>
<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.</p>
<p>$99.99</p>
</article>
<article>
<img src="#" alt="products pic">
<meter min="0" max="5" value="3"></meter>
<h1>product</h1>
<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.</p>
<p>$99.99</p>
</article>
<article>
<img src="#" alt="products pic">
<meter min="0" max="5" value="3"></meter>
<h1>product</h1>
<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.</p>
<p>$99.99</p>
</article>
<article>
<img src="#" alt="products pic">
<meter min="0" max="5" value="3"></meter>
<h1>product</h1>
<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.</p>
<p>$99.99</p>
</article>
</section>
<footer>
<ul>
<li><a href="#">gift cards</a></li>
<li><a href="#">find a store</a></li>
<li><a href="#">sign up for email</a></li>
<li><a href="#">become a member</a></li>
</ul>
<ul>
<li><a href="#">get help</a></li>
<li><a href="#">order status</a></li>
<li><a href="#">shipping and delivery</a></li>
<li><a href="#">returns</a></li>
<li><a href="#">payment options</a></li>
<li><a href="#">contact us</a></li>
</ul>
<ul>
<li><a href="#">News</a></li>
<li><a href="#">About cycleworld</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Gearup culture & Career</a></li>
<li><a href="#">Investors</a></li>
<li><a href="#">Sustainable innovaction</a></li>
<li><a href="#">CA Supply</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<ul>
<li><a href="http://www.facebook.com">Facebook</a></li>
<li><a href="http://www.twitter.com">Twitter</a></li>
<li><a href="http://www.youtube.com">YouTube</a></li>
<li><a href="http://www.plus.google.com">Google Plus</a></li>
<li><a href="http://www.instagram.com">Instagram</a></li>
</ul>
<p id="copyright"></p>
</footer>
</body>
</html>