-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (35 loc) · 1.38 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
<!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">
<link rel="icon" href="images/icon.jpg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>Initial D Memory Game</title>
</head>
<body>
<div class="container">
<header>
<h1 id="t2">Initial D Memory Game</h1>
</header>
<section class="game">
<div id="grid"></div>
<!-- <h3>Score: <span id="result"></span></h3> -->
<section id="cringe">
<button onclick="changeBackground()">Background</button>
<!-- <button onclick="window.location.reload()">Play Again</button> -->
<button onclick="playAgain()">Play Again</button>
<h4 id="target"><span id="result"></span></h4>
</section>
</section>
</div>
<!--
todo: Make a stylesheet for Phone as well and Pointer Help Hover to tell user about Hotkeys
todo: make a animation effect for the page load and test it out if it's good or not
-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<!-- <script defer src="app.js" charset="utf-8"></script> -->
<script defer src="game.js" charset="utf-8"></script>
</body>
</html>