-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
53 lines (48 loc) · 2.04 KB
/
about.html
File metadata and controls
53 lines (48 loc) · 2.04 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
<!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">
<script src="https://kit.fontawesome.com/3b49034a96.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/header.css">
<link rel="stylesheet" href="./css/general.css">
<link rel="stylesheet" href="./css/home.css">
<link rel="stylesheet" href="./css/footer.css">
<title>About</title>
</head>
<body>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<label class="logo">GameX</label>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./shop.html">Shop</a></li>
<li><a class="active" href="./about.html">About</a></li>
<li><h1><i class=" fa fa-shopping-cart"></i></h1></li>
</ul>
</nav>
<div class="home-cont">
<h1 class="welcome">GameX</h1>
<h2 class="descript">Gamex is the ultimate destination for gamers looking to power up their gameplay experience. Our online shop offers a wide range of in-game items for various popular games, giving you an edge over your opponents. From virtual currencies to rare items, we have everything you need to level up your gaming prowess.
Browse our selection and make your mark in the gaming world with Gamex.</h2>
</div>
</div>
<footer class="footer">
<div class="footer-container">
<div class="footerlog">
<label class="logo">GameX</label>
</div>
<div class="footer-social">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
<p class="footer-text">© 2023 GameX. All rights reserved.</p>
</footer>
</body>
</html>