-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (92 loc) · 4.46 KB
/
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
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<title>Word Puzzle</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
</head>
<body>
<script>
(function() {
var head= document.getElementsByTagName('head')[0];
var script= document.createElement('script');
var frameQueryString = document.location.href.split("id=")[1];
script.src= 'puzzle'+frameQueryString +'.js';
head.appendChild(script);
})();
</script>
<script src = "game.js"></script>
<div class = "container">
<h1 class = "text-center">So Many 5x5s</h1>
<p class = "text-center"> Want more than one NyTimes mini puzzle a day? This is the site for you! </p>
<hr>
<button onclick = "checkWin()" style = "float:right">Check</button>
<div class = "mx-auto" id = "timer">0:00</div>
<hr>
<div class = "row my-4">
<div class = "col-md-4">
<table cellspacing="0" cellpadding="0" class = "mx-auto" id = "main-table">
<!-- <tr>
<th><input class = "inputBox" id = "11" maxlength = "1"></input><p class = "number">1</p></th>
<th><input class = "inputBox" id = "12" maxlength = "1"></input><p class = "number">2</p></th>
<th><input class = "inputBox" id = "13" maxlength = "1"></input><p class = "number">3</p></th>
<th><input class = "inputBox" id = "14" maxlength = "1"></input><p class = "number">4</p></th>
<th><input class = "inputBox" id = "15" maxlength = "1"></input><p class = "number">5</p></th>
</tr>
<tr>
<th><input class = "inputBox" id = "21" maxlength = "1"></input><p class = "number">2</p></th>
<th><input class = "inputBox" id = "22" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "23" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "24" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "25" maxlength = "1"></input></th>
</tr>
<tr>
<th><input class = "inputBox" id = "31" maxlength = "1"></input><p class = "number">3</p></th>
<th><input class = "inputBox" id = "32" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "33" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "34" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "35" maxlength = "1"></input></th>
</tr>
<tr>
<th><input class = "inputBox" id = "41" maxlength = "1"></input><p class = "number">4</p></th>
<th><input class = "inputBox" id = "42" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "43" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "44" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "45" maxlength = "1"></input></th>
</tr>
<tr>
<th><input class = "inputBox" id = "51" maxlength = "1"></input><p class = "number">5</p></th>
<th><input class = "inputBox" id = "52" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "53" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "54" maxlength = "1"></input></th>
<th><input class = "inputBox" id = "55" maxlength = "1"></input></th>
</tr> -->
</table>
</div>
<div class = "col-md-4 clues">
<ol id = "acrossClues">
<lh>Across</lh>
<li id = "aclue1">clue</li>
<li id = "aclue2">clue</li>
<li id = "aclue3">clue</li>
<li id = "aclue4">clue</li>
<li id = "aclue5">clue</li>
</ol>
</div>
<div class = "col-md-4 clues">
<ol id = "downClues">
<lh>Down</lh>
<li id = "dclue1">clue</li>
<li id = "dclue2">clue</li>
<li id = "dclue3">clue</li>
<li id = "dclue4">clue</li>
<li id = "dclue5">clue</li>
</ol>
</div>
</div>
</div>
</body>
</html>