-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (38 loc) · 828 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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>WIP.js</title>
<link rel="stylesheet" href="wip.css" type="text/css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="wip.js"></script>
<script>
$(document).ready(function(){
$.wip();
});
</script>
</head>
<body>
<h1 class="test">WIP.js</h1>
<div>
<h2>NO WIP/PIW</h2>
</div>
<div class="wip_1">
<h2>WIP 1</h2>
</div>
<div class="piw_1">
<h2>PIW 1</h2>
</div>
<div>
<h2>NO WIP/PIW</h2>
</div>
<div class="wip_2">
<h2>WIP 2</h2>
</div>
<div class="piw_2">
<h2>PIW 2</h2>
</div>
<div>
<h2>NO WIP/PIW</h2>
</div>
</body>
</html>