forked from bagaag/javascript-crossword
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 683 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 683 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
<html>
<head>
<title>JavaScript Crossword</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="lib/jquery.min.js"></script>
<script type="text/javascript" src="lib/jquery.hotkeys.js"></script>
<script type="text/javascript" src="lib/jquery.cookie.js"></script>
<script type="text/javascript" src="crossword.js"></script>
<script type="text/javascript">
var crossw1rd1;
//var crossw1rd2;
$(document).ready(function() {
crossw1rd1 = new Crossw1rd('container1');
crossw1rd1.init('puzzle');
});
</script>
<meta charset="UTF-8">
</head>
<body>
<div id="container1"></div>
<br/>
<div id="container2"></div>
</body>
</html>