@@ -21,31 +21,31 @@ <h2 class="section-header">MUSIC</h2>
21
21
< div class ="shop-items ">
22
22
< div class ="shop-item ">
23
23
< span class ="shop-item-title "> Album 1</ span >
24
- < img src ="Images/Album 1.png ">
24
+ < img class =" shop-item-image " src ="Images/Album 1.png ">
25
25
< div class ="shop-item-details ">
26
26
< span class ="shop-item-price "> $12.99</ span >
27
27
< button class ="btn btn-primary shop-item-button " type ="button "> ADD TO CART</ button >
28
28
</ div >
29
29
</ div >
30
30
< div class ="shop-item ">
31
31
< span class ="shop-item-title "> Album 2</ span >
32
- < img src ="Images/Album 2.png ">
32
+ < img class =" shop-item-image " class =" shop-item-image " src ="Images/Album 2.png ">
33
33
< div class ="shop-item-details ">
34
34
< span class ="shop-item-price "> $14.99</ span >
35
35
< button class ="btn btn-primary shop-item-button " type ="button "> ADD TO CART</ button >
36
36
</ div >
37
37
</ div >
38
38
< div class ="shop-item ">
39
39
< span class ="shop-item-title "> Album 3</ span >
40
- < img src ="Images/Album 3.png ">
40
+ < img class =" shop-item-image " src ="Images/Album 3.png ">
41
41
< div class ="shop-item-details ">
42
42
< span class ="shop-item-price "> $9.99</ span >
43
43
< button class ="btn btn-primary shop-item-button " type ="button "> ADD TO CART</ button >
44
44
</ div >
45
45
</ div >
46
46
< div class ="shop-item ">
47
47
< span class ="shop-item-title "> Album 4</ span >
48
- < img src ="Images/Album 4.png ">
48
+ < img class =" shop-item-image " src ="Images/Album 4.png ">
49
49
< div class ="shop-item-details ">
50
50
< span class ="shop-item-price "> $19.99</ span >
51
51
< button class ="btn btn-primary shop-item-button " type ="button "> ADD TO CART</ button >
@@ -58,15 +58,15 @@ <h2 class="section-header">MERCH</h2>
58
58
< div class ="shop-items ">
59
59
< div class ="shop-item ">
60
60
< span class ="shop-item-title "> T-Shirt</ span >
61
- < img src ="Images/Shirt.png ">
61
+ < img class =" shop-item-image " src ="Images/Shirt.png ">
62
62
< div class ="shop-item-details ">
63
63
< span class ="shop-item-price "> $19.99</ span >
64
64
< button class ="btn btn-primary shop-item-button " type ="button "> ADD TO CART</ button >
65
65
</ div >
66
66
</ div >
67
67
< div class ="shop-item ">
68
68
< span class ="shop-item-title "> Coffee Cup</ span >
69
- < img src ="Images/Cofee.png ">
69
+ < img class =" shop-item-image " src ="Images/Cofee.png ">
70
70
< div class ="shop-item-details ">
71
71
< span class ="shop-item-price "> $6.99</ span >
72
72
< button class ="btn btn-primary shop-item-button " type ="button "> ADD TO CART</ button >
@@ -81,33 +81,35 @@ <h2 class="section-header">CART</h2>
81
81
< span class ="cart-price cart-header cart-column "> PRICE</ span >
82
82
< span class ="cart-quantity cart-header cart-column "> QUANTITY</ span >
83
83
</ div >
84
- < div class ="cart-row ">
85
- < div class ="cart-item cart-column ">
86
- < img src ="Images/Shirt.png " width ="100 " height ="100 ">
87
- < span class ="cart-item-title "> T-Shirt</ span >
84
+ < div class ="cart-items ">
85
+ < div class ="cart-row ">
86
+ < div class ="cart-item cart-column ">
87
+ < img class ="cart-item-image " src ="Images/Shirt.png " width ="100 " height ="100 ">
88
+ < span class ="cart-item-title "> T-Shirt</ span >
89
+ </ div >
90
+ < span class ="cart-price cart-column "> $19.99</ span >
91
+ < div class ="cart-quantity cart-column ">
92
+ < input class ="cart-quantity-input " type ="number " value ="1 ">
93
+ < button class ="btn btn-danger " type ="button "> REMOVE</ button >
94
+ </ div >
88
95
</ div >
89
- < span class ="cart-price cart-column "> $19.99</ span >
90
- < div class ="cart-quantity cart-column ">
91
- < input type ="number " value ="1 ">
92
- < button type ="button "> REMOVE</ button >
96
+ < div class ="cart-row ">
97
+ < div class ="cart-item cart-column ">
98
+ < img class ="cart-item-image " src ="Images/Album 3.png " width ="100 " height ="100 ">
99
+ < span class ="cart-item-title "> Album 3</ span >
100
+ </ div >
101
+ < span class ="cart-price cart-column "> $9.99</ span >
102
+ < div class ="cart-quantity cart-column ">
103
+ < input class ="cart-quantity-input " type ="number " value ="2 ">
104
+ < button class ="btn btn-danger " type ="button "> REMOVE</ button >
105
+ </ div >
93
106
</ div >
94
107
</ div >
95
- < div class ="cart-row ">
96
- < img src ="Images/Album 3.png " width ="100 " height ="100 ">
97
- < span > Album 3</ span >
98
- <>
99
- < span > $9.99</ span >
100
- <>
101
- < input type ="number " value ="2 ">
102
- < button type ="button "> REMOVE</ button >
103
- </ div >
104
- < div >
105
- < strong > Total</ strong >
106
- < span > $39.97</ span >
107
- </ div >
108
- < div >
109
- < button type ="button "> PURCHASE</ button >
108
+ < div class ="cart-total ">
109
+ < strong class ="cart-total-text "> Total</ strong >
110
+ < span class ="cart-total-price "> $39.97</ span >
110
111
</ div >
112
+ < button class ="btn btn-primary btn-purchase " type ="button "> PURCHASE</ button >
111
113
</ section >
112
114
< footer class ="main-footer ">
113
115
< div class ="container main-footer-container ">
0 commit comments