-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
88 lines (86 loc) · 3.95 KB
/
games.html
File metadata and controls
88 lines (86 loc) · 3.95 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Game Hub - List of all games</title>
<meta name="description" content="The universe of games">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<!-- Hotjar Tracking Code for https://sunny-rabanadas-f0f767.netlify.app/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3797572,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>
</head>
<body>
<header>
<section class="header-section">
<div class="header-left">
<nav>
<div class="navbar">
<div class="container nav-container">
<input class="checkbox" type="checkbox" name="" id="" />
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
<div class="menu-items">
<li><a href="index.html" class="nav-active">Home</a></li>
<li><a href="games.html">List of games</a></li>
<li><a href="about.html">About</a></li>
<li><a href="support.html">Support</a></li>
</div>
</div>
</div>
</nav>
<nav class="nav-desktop">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="games.html" class="nav-active">List of games</a></li>
<li><a href="about.html">About</a></li>
<li><a href="support.html">Support</a></li>
</ul>
</nav>
</div>
<div class="header-middle">
<a href="index.html">
<img class="logo" src="/images/GameHub_Logo.png" alt="GameHub_Logo" class="logo"/>
</a>
</div>
<div class="header-right">
<a href="checkout.html" class="shopping-cart"><span class="material-symbols-outlined">
shopping_cart
</span></a>
<a href="games.html" class="button">
<img src="images/search.png" width="25px" alt="Search" />
</a>
<a href="#" class="account-circle"><span class="material-symbols-outlined">
account_circle
</span></a>
</div>
</section>
</header>
<main>
<a href="">
<div class="box">
<h1>List of all games</h1>
<div class="game-row">
<div class="lds-dual-ring"></div>
<div class="game-item">
</div>
</a>
</main>
<script src="js/displayAllGames.js"></script>
</body>
<footer>
<p>©2022 Game HUB™. All Rights Reserved</p>
</footer>
</html>