forked from dianamin/JsGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
52 lines (34 loc) · 854 Bytes
/
main.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html>
<head>
<title> Match </title>
<meta charset = "utf-8">
</head>
<body>
<link rel = "stylesheet" href = "style.css">
<link rel = "shortcut icon" href = "icon.png">
<p id = "titlu"> Match </p>
<div id = "score"> </div>
<div id = "gamenr"> </div>
<center>
<div id = "query">
Numbers only. <br /> <br />
Width: <input id = "width" placeholder = "6"> </input> <br /> <br />
Height: <input id = "height" placeholder = "2"> </input>
<br />
<center>
<p id = "error"> <br /> </p>
<div id = "send"> Play! </div>
</center>
</div>
<div id = "game">
<table cellspacing = 20px>
</table>
</div>
<br />
<p id = "clicks"> Number of clicks: 0 </p>
</center>
<div id = "copyright"> © Diana Min </br> github.com/dianamin </div>
<script src = "jQuery.js"> </script>
<script src = "script.js"> </script>
</body>
</html>