-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.12 KB
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Note - Single Page App</title>
<link rel='stylesheet' href='css/style.css' media='screen' charset='utf-8'>
<script src='note-controller.js'></script>
<script src='note-list-model.js'></script>
<script src='note-model.js'></script>
<script src='note-list-view.js'></script>
<script src='single-note-view.js'></script>
</head>
<body>
<div id='myDIV' class='header'>
<h2 id='title' style='margin:5px'>My Note List</h2><br>
<form action='#' method='post' id='form'>
<input id='note-text' type='text' placeholder="Enter here your Note ..." required>
<input type='submit' value='Create Note' name='create' id='myBtn'>
</form>
</div>
<div id='app'>
</div>
<div id='currentSingleNote'></div>
<footer class="footer">
© 2016 My NoteList by Manuela Sabatino |
<a href="https://github.com/ManuCiao" target="_blank">GitHub</a> |
<a href="https://uk.linkedin.com/in/mnsabatino" target="_blank">LinkedIn</a>
</footer>
<script src='index.js'></script>
</body>
</html>