-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (45 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2000s Gaming Collection</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="font.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jersey+10&display=swap" rel="stylesheet">
</head>
<body>
<div id="overlay"></div>
<main>
<section id="collection">
<!-- Popup container -->
<div class="popup-container" id="popupContainer">
<!-- Popup content -->
<div class="popup-content">
<h2>This game is still in development</h2>
<p>We are working hard to bring it to you soon!</p>
<!-- Close button -->
<span class="close-btn" onclick="closePopup()">Close</span>
</div>
</div>
<h1 class="jersey-10-regular">PixelNostalgia
</h1>
<ul id="gameList" class="jersey-10-regular">
<!-- JavaScript will generate list items here -->
</ul>
</section>
</main>
<div id="accelerationData"></div>
<audio id="selectSound">
<source src="select.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="startSound">
<source src="start.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<script src="script.js"></script>
</body>
</html>