-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (22 loc) · 822 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Home Page</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="gameArea">
<h1> Calculating Money Web Game</h1>
<h3> Choose your Difficulty </h3>
<a href="level1.html"><button id="easy"> Easy</button></a> <br>
<a href="scriptMedLevel1.html"><button id="medium"> Medium</button></a> <br>
<a href="hardLevel1.html"><button id="hard"> Hard</button></a> <br>
<a href="extremeLevel1.html"><button id="extreme"> Extreme</button></a> <br>
<a href=""><button id="ultraExtreme"> ULTRA EXTREME</button></a>
<br> <a href="credit.html"><button id="credit"> Credit </button></a>
</div>
<script src="script.js"></script>
</body>
</html>