-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgames.html
More file actions
101 lines (86 loc) · 3.62 KB
/
games.html
File metadata and controls
101 lines (86 loc) · 3.62 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>GameX</title>
<!-- Import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="/games.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="icon" href="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2FPOST%20PNG.png?v=1638858028894"
type="image/x-icon" />
</head>
<body>
<nav class="navbar">
<div class="navbarlinks" id="myTopnav">
<a href="./register.html"><i class="fa fa-fw fa-user"></i> Register</a>
<a href="./contact.html"><i class="fa fa-fw fa-envelope"></i> Contact Us</a>
<a href="./aboutUs.html"><i class="fa fa-users" aria-hidden="true"></i> About Us</a>
<a href="./games.html"><i class="fa fa-gamepad" style="font-size:20px"></i> Games</a>
<a href="javascript:void(0);" class="icon" onclick="resizeBrowser()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="logo">
<a href="./index.html">
<img src="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2FPOST.jpg?v=1638856188280"
alt="GameX Logo" id="logo" />
</a>
</div>
</nav>
<div class="row">
<div class="column">
<h2>Dota 2</h2>
<a href="Games/dota2.html"><img
src="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2FDOTA%202%20Icon.jpg?v=1638940485373">
</a>
</div>
<div class="column">
<h2>Battlefield 2042</h2>
<a href="./games.html">
<img
src="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2FBattleField%20Icon.jfif?v=1638940481653">
</a>
</div>
<div class="column">
<h2>League Of Legends</h2>
<a href="./games.html">
<img
src="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2Fleague-of-legends%20icon.jpg?v=1638940478701">
</a>
</div>
<div class="column">
<h2>Valorant</h2>
<a href="./games.html">
<img
src="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2FValorant%20icon.jpg?v=16389404751520"></a>
</div>
<div class="column">
<h2>World of Warcraft</h2>
<a href="./games.html">
<img
src="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2Fwarcraft%20icon.jpg?v=1638940468629"></a>
</div>
<div class="column">
<h2>CS-GO</h2>
<a href="./games.html">
<img
src="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2Fcsgo%20icon.jpg?v=1638940473345"></a>
</div>
<div class="column">
<h2>Fortnite</h2>
<a href="./games.html">
<img
src="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2Ffortnite%20icon.jpg?v=1638940476889"></a>
</div>
<div class="column">
<h2>World of Tanks</h2>
<a href="./games.html">
<img
src="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2Fwot%20icon.jfif?v=1638940471016"></a>
</div>
</div>
<!-- Import the webpage's javascript file -->
<script src="script.js"></script>
</body>
</html>