blob: dc03fa2bd5c64c5fdccda09d90069c5418f008fc (
plain) (
blame)
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
|
<!doctype html>
<html lang="en"><head><meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="../css/main.css">
<link rel="shortcut icon" href="../i/fav.png">
<title>Bike Mastery: Parts</title></head><body>
<header>
<h1>Parts Inventory
<i>Bike Mastery</i></h1>
</header>
<nav>
<a href=".." class="btn">Home</a>
<a href="../guides" class="btn">Guides</a>
<a href="" class="btn">Parts</a>
<a href="../order" class="btn">Order</a>
<a href="../template" class="btn">Template</a>
<a href="http://github.com/4stc/bike_mastery" class="btn">Source</a>
<i>Bike Mastery / Parts</i>
</nav>
<main class="grid"><div>
<h2>Bike Parts</h2>
<p>Here you can see our current supply of bike parts.</p>
</div><div>
<table>
<caption>Our Inventory</caption>
<tr>
<th>ID</th>
<th>Brand</th>
<th>Item</th>
<th>Color</th>
<th>Stock</th>
<th>Cost</th>
</tr><tr>
<td>1</td>
<td>Best Bike Co.</td>
<td>26x2.125 Inch Wheels</td>
<th>Silver</th>
<td>23</td>
<td>$125</td>
</tr><tr>
<td>2</td>
<td>Best Bike Co.</td>
<td>26x2.125 Inch Tires</td>
<th>Dark Grey</th>
<td>19</td>
<td>$90</td>
</tr><tr>
<td>3</td>
<td>Best Bike Co.</td>
<td>Seat/Saddle</td>
<th>Black</th>
<td>22</td>
<td>$55</td>
</tr><tr>
<td>4</td>
<td>Best Bike Co.</td>
<td>Pedals</td>
<th>Silver</th>
<td>24</td>
<td>$45</td>
</tr><tr>
<td>5</td>
<td>Tough Bike Co.</td>
<td>26x3 Inch Heavy-Duty Wheels</td>
<th>Black</th>
<td>17</td>
<td>$160</td>
</tr><tr>
<td>6</td>
<td>Tough Bike Co.</td>
<td>26x3 Inch All-Terrain Tires</td>
<th>Black</th>
<td>16</td>
<td>$125</td>
</tr><tr>
<td>7</td>
<td>Best Bike Co.</td>
<td>Handlebar</td>
<th>Silver</th>
<td>21</td>
<td>$55</td>
</tr><tr>
<td>8</td>
<td>Best Bike Co.</td>
<td>Handlebar Grips</td>
<th>Dark Grey</th>
<td>22</td>
<td>$35</td>
</tr>
</table>
</div></main>
<footer>
<p>Made by Name Surname |
<a href="../i/parts_mobile.png" target="_blank">Mobile Wireframe</a> |
<a href="../i/parts_desktop.png" target="_blank">Desktop Wireframe</a>
</p>
</footer>
</body></html>
|