-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
152 lines (145 loc) · 5.09 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Video Game Store</title>
<link rel="shortcut icon" type="image/" href="./favicon.ico" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/media-queries.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script src="scripts/script.js"></script>
<link rel="stylesheet" href="styles/shop.css" />
</head>
<body>
<header>
<nav class="nav">
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
<div class="logo">
<img class="logo-img" src="assets/img/logo.svg" alt="" />
</div>
<!--Cart (will use with JS as well)-->
<div class="cart">
<div class="dropdown-content" id="dropdown">
<h5>Your Cart</h5>
<ul id="append-items" class="append-items"></ul>
<h5 style="padding: 1em; color: var(--main-clr); font-weight: 800">
Total: $<span id="totalAmount">0</span>
</h5>
<button style="margin: 1em" class="purchase" id="purchase">
Purchase
</button>
</div>
<i class="fa-solid fa-cart-shopping" id="cart"></i>
<span class="badge" id="cart-count">0</span>
</div>
</nav>
</header>
<div class="container">
<div class="row">
<div class="col-md-4 col-lg-4">
<div class="card" style="width: 18rem">
<img src="assets/img/Fifajpg.jpg" class="card-img-top" alt="FIFA" />
<div class="card-body">
<h3 class="card-title">FIFA 22</h3>
<h4 class="cost">Price: $60</h4>
<button class="btn btn-primary">Add to Cart</button>
</div>
</div>
</div>
<div class="col-md-4 col-lg-4">
<div class="card" style="width: 18rem">
<img
src="assets/img/fortnite_.jpg"
class="card-img-top"
alt="fortnite"
width="200"
/>
<div class="card-body">
<h3 class="card-title">Fortnite</h3>
<h4 class="cost">Price: $60</h4>
<button class="btn btn-primary">Add to Cart</button>
</div>
</div>
</div>
<div class="col-md-4 col-lg-4">
<div class="card" style="width: 18rem">
<img
src="assets/img/mario.jpg"
class="card-img-top"
alt="Mario"
width="200"
/>
<div class="card-body">
<h3 class="card-title">Mario</h3>
<h4 class="cost">Price: $60</h4>
<button class="btn btn-primary">Add to Cart</button>
</div>
</div>
</div>
<div class="col-md-4 col-lg-4">
<div class="card" style="width: 18rem">
<img
src="assets/img/portal2.jpg"
class="card-img-top"
alt="portal2"
width="200"
/>
<div class="card-body">
<h3 class="card-title">Portal 2</h3>
<h4 class="cost">Price: $60</h4>
<button class="btn btn-primary">Add to Cart</button>
</div>
</div>
</div>
<div class="col-md-4 col-lg-4">
<div class="card" style="width: 18rem">
<img
src="assets/img/Wii-Sports---Nintendo-Wii.jpg"
class="card-img-top"
alt="Wii sports"
width="200"
/>
<div class="card-body">
<h3 class="card-title">Wii Sports</h3>
<h4 class="cost">Price: $60</h4>
<button class="btn btn-primary">Add to Cart</button>
</div>
</div>
</div>
<div class="col-md-4 col-lg-4">
<div class="card" style="width: 18rem">
<img
src="assets/img/shadow.jpg"
class="card-img-top"
alt="Shadow"
/>
<div class="card-body">
<h3 class="card-title">Shadow of the Collossus</h3>
<h4 class="cost">$60</h4>
<button class="btn btn-primary">Add to Cart</button>
</div>
</div>
</div>
</div>
</div>
<script src="scripts/script.js"></script>
</body>
</html>