-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
125 lines (125 loc) · 4.75 KB
/
products.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Game hub poducts, new games including ping pong, black, super duper, boxer, forge legend, furious,assassin. for all modern consolls "
/>
<meta
name="keywords"
content="ps4, ps5, xbox, pc, games, gaming, ping pong, black, super duper, boxer, forge legend, furious,assassin"
/>
<script>
(function (h, o, t, j, a, r) {
h.hj =
h.hj ||
function () {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = { hjid: 3389152, hjsv: 6 };
a = o.getElementsByTagName("head")[0];
r = o.createElement("script");
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, "https://static.hotjar.com/c/hotjar-", ".js?sv=");
</script>
<link rel="stylesheet" href="/css/stylesheet.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
/>
<title>Products</title>
</head>
<body class="body_products">
<header>
<div class="i">
<a href="index.html"
><img src="images/GameHub_Logo.png" alt="Game Hub Logo"
/></a>
</div>
<section class="nav_mobile">
<i class="fa-solid fa-burger" id="checkbox"></i>
<a href="login.html" id="a_user"
><i class="fa-regular fa-user" id="user"></i
></a>
<nav>
<ul>
<li><a href="products.html" class="current_on">Products</a></li>
<li><a href="used.html">Used games</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="contact.html">Contact</a></li>
<li class="cart_li"><a href="cart.html" id="cart"><i class="fa-solid fa-cart-shopping"></i></a></li>
</ul>
</nav>
<a href="cart.html" id="cartMobile"><i class="fa-solid fa-cart-shopping"></i></a>
</section>
</header>
<main>
<section class="products">
<h1>Products</h1>
<div class="games_card ping_pong">
<img
src="images/GameHub_covers.jpg"
alt="ping pong champion Game cover"
/>
<h2>Ping pong champion</h2>
<h3 class="h3gameCard">Ps5, Xbox one and PC</h3>
<a href="ping_pong.html" class="cta_p"><em class="oldPrice">55£</em><em class="price">25£</em></a>
</div>
<div class="games_card super_duper">
<img src="images/GameHub_covers2.jpg" alt="Super duper Game cover" />
<h2>Super Duper</h2>
<h3 class="h3gameCard">Ps5, Xbox one and PC</h3>
<a href="super.html" class="cta_p"><em class="oldPrice">20£</em><em class="price">15£</em></a>
</div>
<div class="games_card black">
<img src="images/GameHub_covers3.jpg" alt="Black Game cover" />
<h2>Black</h2>
<h3 class="h3gameCard">Ps5, Xbox one and PC</h3>
<a href="black.html" class="cta_p"><em class="oldPrice">30£</em><em class="price">20£</em></a>
</div>
<div class="games_card furious">
<img src="images/GameHub_covers4.jpg" alt="furious Game cover" />
<h2>Furious</h2>
<h3 class="h3gameCard">Ps5, Xbox one and PC</h3>
<a href="furious.html" class="cta_p two">55£</a>
</div>
<div class="games_card assassin">
<img src="images/GameHub_covers5.jpg" alt="Assassin Game cover" />
<h2>Assassin</h2>
<h3 class="h3gameCard">Ps5, Xbox one and PC</h3>
<a href="assassin.html" class="cta_p two">55£</a>
</div>
<div class="games_card boxer">
<img src="images/GameHub_covers8.jpg" alt="Boxer Game cover" />
<h2>Boxer</h2>
<h3 class="h3gameCard">Ps5, Xbox one and PC</h3>
<a href="boxer.html" class="cta_p two">20£</a>
</div>
<div class="games_card forge_legend">
<img
src="images/GameHub_covers10.jpg"
alt="Forge Legend Game cover"
/>
<h2>Forge Legend</h2>
<h3 class="h3gameCard">Ps5, Xbox one and PC</h3>
<a href="forge.html" class="cta_p two">25£</a>
</div>
</section>
</main>
<footer>
<ul>
<li>Email: [email protected]</li>
<li>Phone: 99998888</li>
<li>Address: example street 2, 4815 Arendal</li>
<li>copyright ©</li>
</ul>
<script src="js/cart_amimation.js"></script>
</footer>
</body>
</html>