-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1 KB
/
Copy pathindex.html
File metadata and controls
34 lines (33 loc) · 1 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Note App</title>
<link rel="stylesheet" type="text/css" href="public/stilesheets/index.css">
<link href="https://fonts.googleapis.com/css?family=Shrikhand" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">
</head>
<body>
<div id="create-notes">
<h1>Notepad</h1>
<form action="index.html" method="post" name="noteForm">
<textarea id="create-note-text" class="text-field" type="text" name="note" ></textarea>
<button id="create-note-button" type="submit" >Create note </button>
</form>
<div>
<h1>My notes...</h1>
<div id="abbrev-notes">
</div>
</div>
</div>
<div id="display-notes">
<h1>Remember...</h1>
<div id="full-notes">
</div>
</div>
<script src="src/noteApp.js"></script>
<script src="src/views.js"></script>
<script> window.onload = newNoteApp() </script>
<script src="src/controller.js"></script>
</body>
</html>