forked from diaryofdiscoveries/Single-Page-Notes-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 771 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Note Buddy</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Note Buddy</h1>
<div id="buddy">
<img src="images/buddy.png" width="600">
</div>
<form action="/" method="GET" enctype="multipart/form-data" >
<textarea id ="note" name="note"></textarea>
<input id="create_note" class="button" type="submit" value="Create">
</form>
<div id="single_note"></div>
<div id="note_list"></div>
<script src="src/note.js"></script>
<script src="src/noteBuddy.js"></script>
<script src="src/buddy.js"></script>
<script src="src/renderer.js"></script>
<script src="src/controller.js"></script>
</body>
</html>