-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (43 loc) · 1.49 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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Notes App</title>
<meta name="description" content="An awesome single page app done with Vanilla JavaScript. Week 7 Challenge at Makers Academy">
<meta name="author" content="Group 0 / May17 Cohort / Makers Academy">
</head>
<!--Functionality-->
<script src="./src/NoteList.js"></script>
<script src="./src/Note.js"></script>
<script src="./src/View.js"></script>
<!--Styling-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/template.css">
<body>
<div class="wrapper">
<header>
<img class="logo" src="img/[email protected]" alt="Notes App Logo">
</header>
<section>
<section class="notes-list-wrapper">
<h2>Notes</h2>
<ul id="notes-list">
</ul>
</section>
<div class="create-new-note">
<form onsubmit="submitNote(); return false;" class="note-form">
<label class="form-label" for="content">Create Note:</label>
<textarea class="note-content-input" name="content" rows="4"></textarea>
<button class="btn btn-submit" type="submit" name="save-note">Save Note</button>
</form>
</div>
<div class="note-wrapper">
<div class="note-content">
<p id="note-content"></p>
</div>
</div>
</section>
</div>
</body>
</html>