-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.html
163 lines (159 loc) · 7.16 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
<!DOCTYPE html>
<html>
<head>
<title>Linkin Park | Store</title>
<meta name="description" content="This is the description">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="main-header">
<!-- TODO : find a suitable background -->
<nav class="nav main-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>
<h1 class="band-name band-name-large">Linkin Park</h1>
</header>
<section class="container" >
<h2 class="title-section">MUSIC</h2>
<div class="shop-items">
<div class="shop-item">
<span class="shop-item-title">Hybrid Theory</span>
<div class="shop-item-image">
<img src="Images/album1.jpg" width="200">
</div>
<div class ="shop-item-details">
<span class="shop-item-price">EUR 11,99</span>
<button class ="btn btn-primary" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Meteora</span>
<div class="shop-item-image">
<img src="Images/album2.jpg" width="200">
</div>
<div class="shop-item-details">
<span class="shop-item-price">EUR 9,98</span>
<button class ="btn btn-primary" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Minutes To Midnight</span>
<div class="shop-item-image">
<img src="Images/album3.jpg" width="200">
</div>
<div class="shop-item-details">
<span class="shop-item-price">EUR 6,99</span>
<button class ="btn btn-primary" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Living Things</span>
<div class="shop-item-image">
<img src="Images/album4.jpg" width="200">
</div>
<div class="shop-item-details">
<span class="shop-item-price">EUR 6,99</span>
<button class ="btn btn-primary" type="button"> ADD TO CART</button>
</div>
</div>
</div>
</section>
<section class = "container">
<h2 class="title-section">MERCH</h2>
<div class="shop-items">
<div class="shop-item">
<span class="shop-item-title">T-Shirt</span>
<div class="shop-item-image">
<img src="Images/tshirt.jpg" width="200">
</div>
<div class="shop-item-details">
<span class="shop-item-price">EUR 6,99</span>
<button class ="btn btn-primary" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Necklace</span>
<span class="shop-item-image">
<img src="Images/collier.jpg" width="200">
</span>
<div class="shop-item-details">
<span class="shop-item-price">EUR 14,20</span>
<button class ="btn btn-primary" type="button">ADD TO CART</button>
</div>
</div>
</div>
</section>
<section class = "container">
<h2 class="title-section">CART</h2>
<div class = "cart-items">
<div class="cart-row">
<span class="cart-column cart-header cart-item ">ITEM</span>
<span class="cart-column cart-header cart-price ">PRICE</span>
<span class="cart-column cart-header cart-quantity ">QUANTITY</span>
</div>
<div class="cart-row">
<div class="cart-column cart-item ">
<img class = "cart-item-image" src="Images/tshirt.jpg" width="100">
<span class="cart-item-title">T-Shirt</span>
</div>
<span class="cart-column cart-price ">EUR 6,99</span>
<div class="cart-column cart-quantity ">
<input class="cart-item-quantity" type="number" value="1">
<button class ="btn btn-danger" type="button">REMOVE</button>
</div>
</div>
<div class="cart-row">
<div class="cart-column cart-item">
<img class="cart-item-image" src="Images/album2.jpg" width="100">
<span class="cart-item-title">Meteora</span>
</div>
<span class="cart-column cart-price">EUR 9,98</span>
<div class="cart-column cart-quantity">
<input class="cart-item-quantity" type="number" value="2">
<button class ="btn btn-danger" type="button">REMOVE</button>
</div>
</div>
</div>
<div class="cart-total">
<span class="cart-total-title">Total</span>
<span class="cart-total-price">EUR 16,97</span>
</div>
<div>
<button class="btn btn-primary btn-purchase" type="button">PURCHASE</button>
</div>
</section>
<footer class="main-footer">
<div class="main-footer-container">
<h3 class="band-name">Linkin Park</h3>
<!-- the attribute target (_blank | _self ) allows us to open the link in a new tab -->
<ul class="nav footer-nav">
<li>
<a href="https://www.facebook.com" target="_blank">
<img src="Images/Facebook Logo.png">
</a>
</li>
<li>
<a href="https://www.spotify.com" target="_blank">
<img src="Images/Spotify Logo.png">
</a>
</li>
<li>
<a href="https://www.youtube.com" target="_blank">
<img src="Images/YouTube Logo.png">
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>