-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (72 loc) · 3.57 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JAMSearchGamers</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="./assets/css/materialize.min.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="./assets/css/style.css">
</head>
<body class="grey darken-4">
<header>
<h1 class="center-align white-text">JAMSearchGamers</h1>
</header>
<nav class="navbar navbar-expand-sm sticky-top grey darken-3">
<ul id="nav-mobile">
<li><a href="#free">Free Games</a></li>
<li><a href="#upcoming">Upcoming Free Games</a></li>
<li><a href="#sale">Discounted Games</a></li>
</ul>
</nav>
<main>
<!--contains free games-->
<div id="free" class="section container-fluid">
<h3 class="center-align white-text">Free Games of the Week</h3>
<hr class="white">
<div id="freeGames" class="row justify-content-evenly">
</div>
<!--contains upcoming games-->
<div id="upcoming" class="section container-fluid">
<h3 class="white-text center-align">Upcoming Free Games</h3>
<hr class="white">
<div id="upcomingGames" class="row justify-content-evenly">
</div>
<!--Contains games on sale-->
<div id="sale" class="section container-fluid position-relative">
<h3 class="center-align white-text">Discounted Games</h3>
<!--look into material icons-->
<!-- Dropdown Trigger -->
<a class="dropdown-trigger btn position-absolute top-50 start-0 grey darken-1" href='#' data-target='dropdown1'>Select</a>
<!-- Dropdown Structure -->
<ul id='dropdown1' class='dropdown-content'>
<li><a href="#!" title="All" class="genre">All</a></li>
<li><a href="#!" title="Games" class="genre">Games</a></li>
<li><a href="#!" title="GameBundle" class="genre">Game Bundles</a></li>
<li><a href="#!" title="GameEdition" class="genre">Game Editions</a></li>
<li><a href="#!" title="GameAddOn" class="genre">Game Add Ons</a></li>
<li><a href="#!" title="Editor" class="genre">Editor</a></li>
<li><a href="#!" title="GameDemo" class="genre">Game Demo</a></li>
<li><a href="#!" title="Apps" class="genre">Apps</a></li>
</ul>
</div>
</div>
<hr class="white">
<h4 id="sectionTitle" class="text-white center-align"></h4>
<div id="GamesOnSale" class="row justify-content-evenly">
</div>
</main>
<footer>
© 2023 JAMSearchGamers
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<!--JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="./assets/js/materialize.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>