-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (50 loc) · 2.12 KB
/
index.html
File metadata and controls
60 lines (50 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>GameX</title>
<script src="https://kit.fontawesome.com/dd76e34534.js" crossorigin="anonymous"></script>
<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" />
<!-- Import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="/index.css" />
<!-- <link rel="stylesheet" href="/searchbar.css" /> -->
</head>
<body>
<div class="crossfade">
<figure></figure>
<figure></figure>
<figure></figure>
<figure></figure>
<figure></figure>
</div>
<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="wrapper">
<div class="search_box">
<input id="searchBar" name="searchBar" type="text" class="input_search" placeholder="Choose Your Game" />
<div class="search_btn"><i class="fas fa-search"></i></div>
</div>
</div>
<!-- Import the webpage's javascript file -->
<script src="script.js"></script>
</body>
</html>