-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 1.73 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- JavaScript -->
<script defer src="./assets/js/main.js"></script>
<!-- CSS -->
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="stylesheet" href="./assets/css/modal.css">
<!-- Favicon -->
<link rel="shortcut icon" href="./assets/images/punch-favicon.png" type="image/x-icon">
<!-- Google Font -->
<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=Righteous&display=swap" rel="stylesheet">
<!-- Page title -->
<title>Memory Game - Home</title>
</head>
<body>
<!-- Page content -->
<div id="content" class="home">
<!-- Play Button -->
<a id="play" class="button">
<button>
<p>PLAY</p>
</button>
</a>
<!-- Modal - Menu options -->
<div id="modal">
<span id="close">X</span>
<ul>
<a href="game.html">
<li id="new-game">New Game</li>
</a>
<a>
<li id="sound">Sound: <span id="music">OFF</span></li>
</a>
<a href="https://github.com/diegosouza007/MemoryGame">
<li id="about">About</li>
</a>
</ul>
</div>
</div>
<!-- Sounds -->
<audio id="music-theme" src="./assets/sounds/opm-ost.ogg"></audio>
<audio id="click" src="./assets/sounds/click.ogg"></audio>
</body>
</html>