-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.html
201 lines (194 loc) · 4.83 KB
/
store.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
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
<!DOCTYPE html>
<html>
<head>
<title>13 Resons Why | Store</title>
<meta name="Keywords" content="13 Reasons, Hannah Baker, Clay Jensen ,Netflix Originals">
<meta name="Description" content="13 Reasons Why Fan Blog">
<meta name="author" content="Hima Reddy">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="store.html">Store</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<div class="container">
<h1 class="text-center page-header">13 Reasons Why </h1>
</div>
</header>
<!-- DVD section-->
<section>
<h2>DVD to buy:</h2>
<div>
<div>
<strong>Season 1</strong>
</div>
<>
<div>
<img src="media/13RW_S1.jpeg" width=200 height=200>
</div>
<>
<div>
<span>£28.89</span>
<>
<button role="button">Add to cart</button>
</div>
</div>
<div>
<div>
<strong>Season 2</strong>
</div>
<>
<div>
<img src="media/13RW_S2.jpeg" width=200 height=200>
</div>
<>
<div>
<span>£38.89</span>
<>
<button role="button">Add to cart</button>
</div>
</div>
<div>
<div>
<strong>Season 3</strong>
</div>
<>
<div>
<img src="media/13RW_S3.jpeg" width=200 height=200>
</div>
<>
<div>
<span>£48.89</span>
<>
<button role="button">Add to cart</button>
</div>
</div>
<div>
<div>
<strong>Season 4</strong>
</div>
<>
<div>
<img src="media/13RW_S4.jpeg" width=200 height=200>
</div>
<>
<div>
<span>£58.89</span>
<>
<button role="button">Add to cart</button>
</div>
</div>
</section>
<!-- Merchandise section-->
<section>
<h2>Merchandise</h2>
<div>
<div>
<strong>T-Shirt</strong>
</div>
<>
<div>
<img src="media/T-Shirt.png" width=200 height=200>
</div>
<>
<div>
<span>£22.00</span>
<>
<button role="button">Add to cart</button>
</div>
</div>
<div>
<div>
<strong>Sweatshirt</strong>
</div>
<>
<div>
<img src="media/Sweatshirt.png" width=200 height=200>
</div>
<>
<div>
<span>£16.22</span>
<>
<button role="button">Add to cart</button>
</div>
</div>
</section>
<!-- CART section-->
<section>
<h2>CART</h2>
<div>
<strong>ITEM</strong>
<>
<strong>PRICE</strong>
<>
<strong>QUANTITY</strong>
<>
</div>
<div>
<img src="media/13RW_S1.jpeg" height="50" width="50">
<>
<span>Season 1 DVD</span>
<>
<span>£28.89</span>
<>
<input type=number value=1>
<>
<button role="button">REMOVE</button>
</div>
<div>
<img src="media/T-Shirt.png" height="50" width="50">
<>
<span>T-Shirt</span>
<>
<span>£22.00</span>
<>
<input type=number value=2>
<>
<button role="button">REMOVE</button>
</div>
<hr>
<div>
<strong>TOTAL</strong>
<>
<span>£58.89</span>
</div>
<>
<div>
<button role="button">PURCHASE</button>
</div>
</section>
<footer>
<h3>Also we are available on:</h3>
<ul>
<ul>
<li>
<a href="https://www.facebook.com/" target="_blank">
<img src="media/facebooklogo.png">
</a>
</li>
<li>
<a href="https://www.instagram.com/" target="_blank">
<img src="media/instagramlogo.png">
</a>
</li>
<li>
<a href="https://www.twitter.com/" target="_blank">
<img src="media/twitter.png">
</a>
</li>
</ul>
</ul>
</footer>
</body>
</html>