-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGame.html
More file actions
26 lines (19 loc) · 723 Bytes
/
Game.html
File metadata and controls
26 lines (19 loc) · 723 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title> Magic Numbers</title>
<link href="https://fonts.googleapis.com/css?family=Courgette|Noto+Sans+TC|Righteous&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<h2>MAGIC NUMBERS</h2>
<h3 id="Display2">Choose any of <br>these numbers:<br>And I will guess it!</h3>
<h3 id="Display3"></h3>
<p id="Display1"></p>
<table id="Table" class="center"></table>
<!-- https://www.w3schools.com/jsref/event_onclick.asp -->
<button id="Button1" onclick="Start()">I have chosen my number! I am ready!</button><br>
<script src="script.js"></script>
</body>
</html>