-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
108 lines (102 loc) · 5.81 KB
/
about.html
File metadata and controls
108 lines (102 loc) · 5.81 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>Game Hub - About</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">List of games</a></li>
<li><a href="about.html" class="nav-active">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>
<section class="layout">
<h1>About us</h1>
<h2><span class="colorchange">We are</span> Game Hub</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Phasellus maximus interdum faucibus. Morbi dictum varius eros a tincidunt.
Donec non magna suscipit, dignissim eros ac, consequat dui. Donec ante arcu, fringilla sit amet justo in, malesuada varius urna.
Nunc porta lacinia odio, sit amet consectetur est vestibulum vitae. In ac dictum nisi. Nam et augue risus. Donec eu justo tortor.
Nulla mattis at turpis convallis interdum. Suspendisse dui neque, lobortis pellentesque mi nec, laoreet porta odio.
Etiam non turpis ut nulla dictum bibendum sed quis nisl. Pellentesque nibh quam, commodo accumsan porta vel, sagittis vel massa. Duis eu sollicitudin risus.
Donec ullamcorper ante nec mattis viverra. Nam eget feugiat ex. Cras imperdiet lorem purus, ut sagittis velit ultricies a.
Etiam feugiat justo metus. Praesent enim mauris, venenatis vel vestibulum a, aliquet nec sapien.
In eleifend lacus nulla, in vehicula dolor scelerisque ut. Proin nec gravida elit.
Nunc varius vitae metus sed porta. Praesent nunc est, dignissim id consequat quis, porttitor non leo.
</p>
<div>
<img class="profile" src="images/Profile.png" alt="Profile picture" width="140px">
<img class="profile" src="images/Profile.png" alt="Profile picture" width="140px">
<img class="profile" src="images/Profile.png" alt="Profile picture" width="140px">
<img class="profile" src="images/Profile.png" alt="Profile picture" width="140px">
<img class="profile" src="images/Profile.png" alt="Profile picture" width="140px">
<img class="profile" src="images/Profile.png" alt="Profile picture" width="140px">
<img class="profile" src="images/Profile.png" alt="Profile picture" width="140px">
<img class="profile" src="images/Profile.png" alt="Profile picture" width="140px">
</div>
</section>
</main>
<footer>
<p>©2022 Game HUB™. All Rights Reserved</p>
</footer>
</body>
</html>