-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·40 lines (33 loc) · 1.43 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
<html>
<head>
<title>JavaScript Crossword</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="https://rawgit.com/wiseley/javascript-crossword/master/lib/jquery.min.js"></script>
<script type="text/javascript" src="https://rawgit.com/wiseley/javascript-crossword/master/lib/jquery.hotkeys.js"></script>
<script type="text/javascript" src="https://rawgit.com/wiseley/javascript-crossword/master/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">
<style>
@import 'https://fonts.googleapis.com/css?family=Oswald';
@import 'https://fonts.googleapis.com/css?family=Roboto';
</style>
</head>
<body>
<div style="border: solid 10px #5B2E89; max-width:750px; max-height:650px; overflow:hidden;">
<h1 style="font-family: 'Oswald', sans-serif; position: absolute; top: 20px; left: 70px; font-size: 40px;">CROSSWORD #1:</h1>
<img src="https://rawgit.com/krawc/javascript-crossword-master/master/Screen%20Shot%202016-09-29%20at%202.28.04%20PM.png"
style="position: absolute; top:40px; right: 60px; max-height: 80px;">
<div id="container1" width="800px" height="550px" style="padding-top:30px;">
</div>
</div>
<br/>
</body>
</html>