-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (49 loc) · 1.84 KB
/
index.html
File metadata and controls
55 lines (49 loc) · 1.84 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
<!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>Home</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 class="active" href="./index.html">Home</a></li>
<li><a href="./shop.html">Shop</a></li>
<li><a 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">Welcome to GameX</h1>
<h2 class="descript">Buy online game item/services for a discounted price and a fast transaction</h2>
<div class="btn-cont">
<a class="shopbtn" href="./shop.html">Shop now!</a>
</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>