forked from TEAM-RADJS/Dayyam-Labyrinth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
34 lines (29 loc) · 1.36 KB
/
game.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
<!DOCTYPE html>
<html>
<head>
<title>Deyyam Labyrinth</title>
<link rel="stylesheet" type="text/css" href="css/gameStyle.css" media="screen"/>
<link href="https://fonts.googleapis.com/css2?family=Grenze&family=Grenze+Gotisch:wght@200;300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<a id = 'goHome' href="./index.html"> View home page </a>
<a id = 'goAbout' href='./about.html'> View the team </a>
<div id='containerDiv' class='startingScreen'>
<form id="formsHere">
<label id='title'>Deyyam Labyrinth</label><br>
<label id = 'genderLabel'> select your avatar =></label>
<select id='genderCheck'>
<option value='Male'>Male</option>
<option value='Female'>Female</option>
</select>
<br>
<input type='number' id='askSize' value='50' min='25' max='75' />
<label id = 'explainInput'> <= Set map size</label>
<input type='submit' id='startButton' value='Start Perilous Game' />
</form>
</div>
</body>
<script src='js/app.js'></script>
</html>