-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
27 lines (22 loc) · 1.03 KB
/
main.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
<!doctype html>
<html>
<!-- manifest="http://syst3mw0rm.github.com/stickyNotes/StickyNotes.manifest"> -->
<head>
<title>Sticky Notes</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<link rel="shortcut icon" href="favicon.png">
<script type="text/javascript" src="js/jquery/js/jquery.min.js"> </script>
<script type="text/javascript" src="js/notes.js"> </script>
</head>
<body>
<div class="top_bar"></div>
<button id="newNoteButton">Add Note</button>
<div id="Support" class="transparent-button"><a href="mailto:syst3m.w0rm@gmail.com"> Contact Me!</a></div>
<script type="text/javascript" src="js/jquery/ui/jquery.ui.core.js"> </script>
<script type="text/javascript" src="js/jquery/ui/jquery.ui.widget.js"> </script>
<script type="text/javascript" src="js/jquery/ui/jquery.ui.mouse.js"> </script>
<script type="text/javascript" src="js/jquery/ui/jquery.ui.resizable.js"> </script>
<script type="text/javascript" src="js/mixpanel.js"> </script>
<script type="text/javascript" src="js/main.js"> </script>
</body>
</html>