-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
38 lines (35 loc) · 979 Bytes
/
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>JMyPuzzle</title>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>
<script src="js/jmypuzzle.js"></script>
<script language="javascript">
$(function() {
$(".jMyPuzzle").jMyPuzzle({
visible: '100%'
});
});
</script>
<link rel="stylesheet" type="text/css" href="css/jmypuzzle.css" />
</head>
<body>
<h1>Mixed words demonstration !!</h1>
<div class="jMyPuzzle">
<p class="trials"></p>
<ul>
<li>or not</li>
<li>be</li>
<li>to</li>
<li>question!</li>
<li>that is</li>
<li>the</li>
<li>To</li>
<li>be,</li>
</ul>
<input type="button" class="button reset" value="reset" />
<input type="button" class="button check" value="check" />
</div>
</body>
</html>