-
Notifications
You must be signed in to change notification settings - Fork 0
/
chal2.html
38 lines (29 loc) · 1.13 KB
/
chal2.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>
<html lang="en" style="user-select:none;" unselectable="on" onselectstart="return false;" oncontextmenu="return false;">
<head>
<meta charset="utf-8">
<title>I like Coding</title>
<link rel="stylesheet " href="../stylesheets/main.css " />
<meta name="viewport " content="width=device-width, initial-scale=1 ">
<script src="http://code.jquery.com/jquery-1.7.2.min.js "></script>
<script src="http://code.jquery.com/ui/1.8.21/jquery-ui.min.js "></script>
<script src="lib/jquery.ui.touch-punch.min.js"></script>
</head>
<body onload="startChal2() ">
<header>
<div class="sun"></div>
<h1>Match The Number</h1>
<div class="cloud cloudRestart" onclick="refresBtn()">restart</div>
<div class="cloud cloudBack" onclick="backToHomePage()">back</div>
</header>
<main>
<section id="chal2">
<div class="questsChal2Container"></div>
<div class="answersChal2Container"></div>
</section>
</main>
<script src="js/chal.js "></script>
<script src="js/general.js "></script>
<script src="js/chal2.js "></script>
</body>
</html>