-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit.html
34 lines (30 loc) · 1.22 KB
/
edit.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>
<title>Notes App</title>
<link href="/images/favicon.png" rel="icon">
<link href="/styles/styles.css" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="container">
<h1 class="header__title">Notes App</h1>
<h2 class="header__subtitle">Take notes and never forget</h2>
</div>
</div>
<div class="actions">
<div class="actions__container actions__container--spaced" >
<a href="index.html">Home</a>
<span id="last-edited"></span>
</div>
</div>
<div class="container">
<input id="note-title" class="title-input" placeholder="Note Title">
<textarea id="note-body" class="body-input"placeholder="Enter note text"></textarea>
<button id="remove-note" class="button button--secondary">Remove Note</button>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment-with-locales.min.js"></script>
<script src="/scripts/notes-functions.js"></script>
<script src="/scripts/notes-edit.js"></script>
</body>
</html>