-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmymazehtml.html
More file actions
24 lines (18 loc) · 844 Bytes
/
mymazehtml.html
File metadata and controls
24 lines (18 loc) · 844 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="mymazehtml.css">
</head>
<body>
<input id="something" type="text" value="this shows nonconstraint input "> Something as a bad example, and should not appear your code
</input> </br>
<input id="colnum" type="number" min="5" max="20" value="10" required> Width </input> </br>
<input id="rownum" type="number" value="10" min="5" max="20" required> Height </input> </br>
<input id="percentage" type ="number" value="0.3" min="0.1" max="1" step="any" required> Percentage of Blocks </input> </br>
<button id="createamaze"> Create A Maze for Me </button>
<div id="message">So far so good! </div>
<div id="mymaze">You will be amazed! </id></br>
<script src="mymazehtml.js"> </script>
<noscript> your browser does not support Javascript! </noscript>
</body>
</html>