-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindexbasic.html
More file actions
30 lines (30 loc) · 893 Bytes
/
indexbasic.html
File metadata and controls
30 lines (30 loc) · 893 Bytes
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
<html>
<head>
<script src="js/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.8.10.custom.min.js" type="text/javascript"></script>
<script src="js/jquery-stickynotes.js" type="text/javascript"></script>
<link href="css/ui-lightness/jquery-ui-1.8.10.custom.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/stickyNote.css" media="screen" rel="stylesheet" type="text/css" />
<script>
$(function() {
$("#sticky_notes").addStickyNotes()
})
</script>
</head>
<body>
<div id="sticky_notes">
<div class="stickyNote">
<div class='note'>note 1 </div>
</div>
<div class="stickyNote">
<div class='note'>note 2 </div>
</div>
<div class="stickyNote">
<div class='note'>note 3 </div>
</div>
<div class="stickyNote">
<div class='note'>note 4 </div>
</div>
</div>
</body>
</html>