-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.html
More file actions
242 lines (224 loc) · 7.21 KB
/
Copy pathstore.html
File metadata and controls
242 lines (224 loc) · 7.21 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags for character set and viewport settings -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
/>
<!-- Link to external CSS file -->
<link rel="stylesheet" href="style.css" />
<!-- Link to Bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<title>Store</title>
</head>
<body>
<!-- <header>
<style>
</style>
</header> -->
<!-- Navigation bar -->
<nav>
<div class="logo">4RUNNERS</div>
<div class="nav-items">
<a href="index.html">Home</a>
<a href="login.html">Login</a>
<a href="about.html">About</a>
</div>
</nav>
<!-- Store title information -->
<section>
<div class="store-title">
<h1>Created by runners for runners</h1>
<br />
<h1>Please log in to place your order</h1>
<br />
<h3>Next Day Delivery Available in UK/ROI</h3>
</div>
</section>
<!-- Login section -->
<section class="store-login">
<a href="login.html"><button>Login</button></a>
</section>
<article class="product-container">
<!-- Product section for Running Vest Male -->
<section>
<article class="product-card">
<a href="runningvestfemale.jpg">
<img
src="assets/images/runningvestfemale.jpg"
alt="Running Vest Female"
/>
</a>
<article class="product-info">
<h2>Running Vest Female</h2>
<h5>S/M/L/XL</h5>
<p class="price">£20</p>
<a href="login.html"><button>Order</button></a>
</article>
</article>
</section>
<!-- Product section for Running Shorts -->
<section>
<article class="product-card">
<a href="assets/images/runningshorts.jpg">
<img src="assets/images/runningshorts.jpg" alt="Running Shorts" />
</a>
<article class="product-info">
<h2>Running Shorts</h2>
<h5>Sizes 28" to 38"</h5>
<p class="price">£15</p>
<a href="login.html"><button>Order</button></a>
</article>
</article>
</section>
<!-- Product section for Running Socks Grey -->
<section>
<article class="product-card">
<a href="runningtsocksgrey.jpg">
<img
src="assets/images/runningtsocksgrey.jpg"
alt="Running Socks Grey"
/>
</a>
<article class="product-info">
<h2>Running Socks Grey</h2>
<h5>Sizes 6-11</h5>
<p class="price">£9</p>
<a href="login.html"><button>Order</button></a>
</article>
</article>
</section>
<!-- Product section for Running Socks White -->
<section>
<article class="product-card">
<a href="runningtsockswhite.jpg">
<img
src="assets/images/runningtsockswhite.jpg"
alt="Running Socks White"
/>
</a>
<article class="product-info">
<h2>Running Socks White</h2>
<h5>Sizes 6-11</h5>
<p class="price">£10</p>
<a href="login.html"><button>Order</button></a>
</article>
</article>
</section>
<!-- Product section for Running Vest Female -->
<section>
<article class="product-card">
<a href="runningtshirtbody.jpg">
<img
src="assets/images/runningtshirtbody.jpg"
alt="Running Vest Female"
/>
</a>
<article class="product-info">
<h2>Running T-Shirt</h2>
<h5>S/M/L/XL</h5>
<p class="price">£20</p>
<a href="login.html"><button>Order</button></a>
</article>
</article>
</section>
<section>
<!-- Product section for Running Shorts -->
<article class="product-card">
<!-- Link to the product image -->
<a href="runningshortsbody.jpg">
<!-- Image of the product -->
<img
src="assets/images/runningshortsbody.jpg"
alt="Running Shorts Body"
/>
</a>
<!-- Information about the product -->
<article class="product-info">
<h2>Running Shorts</h2>
<h5>Sizes 28" - 38"</h5>
<p class="price">£15</p>
<!-- Button to order the product -->
<a href="login.html"><button>Order</button></a>
</article>
</article>
</section>
<section>
<!-- Container for the product cards -->
<!-- Individual product card -->
<article class="product-card">
<!-- Link to the product image -->
<a href="runningtshirtbody.jpg">
<!-- Image of the product -->
<img src="assets/images/runningtshirt.jpg" alt="Running T-Shirt" />
</a>
<!-- Information about the product -->
<article class="product-info">
<h2>Running T-Shirt</h2>
<h5>S/M/L/XL</h5>
<p class="price">£20</p>
<!-- Button to order the product -->
<a href="login.html"><button>Order</button></a>
</article>
</article>
</section>
<section>
<!-- Container for the product cards -->
<!-- Individual product card -->
<article class="product-card">
<!-- Link to the product image -->
<a href="runningvestmale.jpg">
<!-- Image of the product -->
<img
src="assets/images/runningvestmale.jpg"
alt="Running Vest Male"
/>
</a>
<!-- Information about the product -->
<article class="product-info">
<h2>Running Vest Male</h2>
<h5>S/M/L/XL</h5>
<p class="price">£10</p>
<!-- Button to order the product -->
<a href="login.html"><button>Order</button></a>
</article>
</article>
</section>
</article>
</body>
<!-- Footer section with social media links -->
<footer>
<ul class="social-networks">
<li>
<a href="https://www.facebook.com" target="_blank"
><i class="fab fa-facebook"></i
></a>
</li>
<li>
<a href="https://www.twitter.com" target="_blank"
><i class="fab fa-twitter-square"></i
></a>
</li>
<li>
<a href="https://www.instagram.com" target="_blank"
><i class="fab fa-instagram"></i
></a>
</li>
<li>
<a href="https://www.strava.com" target="_blank"
><i class="fab fa-strava"></i
></a>
</li>
</ul>
</footer>
</html>