-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>PROJECT 1</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Khula:wght@400;700;800&display=swap" rel="stylesheet">
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"></script>
<script src="app.js" charset="utf-8"></script>
</head>
<body>
<h1>YOUR NEW FAVORITE <br />INDIE GAME</h1>
<div class="main">
<div class="games">
</div>
<div id="modal">
<div id="modalbox">
<ul>
<div class="title"></div>
<div class="genres"></div>
<li class="rating"></li>
<li class="release"></li>
<li class="playtime"></li>
<div class="screenshots"></div>
<div class="platforms"></div>
</ul>
</div>
</div>
</div>
<div class="nav">
<p id="previous">PREVIOUS</p>
<p id="home">HOME</p>
<p id="random">RANDOM</p>
<p id="next">NEXT</p>
</div>
</body>
</html>