-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (30 loc) · 1.09 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>jQuery Drag & Drop Match Game</title>
<link href="matchgame.css" rel="stylesheet" />
</head>
<body >
<div class="matchgame">
<div id="game_container">
<div id="score_container">
<div id="score_text"></div>
</div>
<div id="button_container">
<input type="button" value="Check Answers" id="check_button" />
<input type="button" value="Reset" id="reset_button" />
</div>
<div id="message">
<div id="text"></div>
<input type="button" value="OK" id="ok_button" />
</div>
<div id="draggable_container"></div>
<div id="droppable_container"></div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<script type="text/javascript" language="javascript" src="matchgame.js"></script>
</body>
</html>