-
Notifications
You must be signed in to change notification settings - Fork 0
/
guessTheNumber.html
30 lines (28 loc) · 1.14 KB
/
guessTheNumber.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Guess the number</title>
<link rel="shortcut icon" href="#">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/lib.css">
<link rel="stylesheet" href="guessTheNumber.css">
</head>
<body>
<header>
<p id="levelHead">Level: <span id="level">1</span></p>
<p id="title">Guess My Number</p>
<p id="scoreHead">Score: <span id="score">0</span></p>
</header>
<div id="gameBoard"></div>
<div id="foot">
<button id="giveUp" disabled>I give up!</button>
<button id="quit" disabled>Bye!</button>
</div>
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/libStd.fg" type="application/funcsug"></script>
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/libDOM.fg" type="application/funcsug"></script>
<script src="guessTheNumber.fg" type="application/funcsug"></script>
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/parser.js"></script>
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/interpreter.js"></script>
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/DOMloader.js"></script>
</body>
</html>