-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 998 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
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.shoelace.style/1.0.0-beta.25/shoelace.css">
<link rel="stylesheet" href="style.css">
<script src="moment.min.js"></script>
<script src="script.js" defer></script>
<title>Notes</title>
</head>
<body>
<main class="mar-md">
<h1>Notes</h1>
<form id="notes-list" class="form">
<label for="notes-text">Create a New Note</label>
<input type="text" id="notes-text">
<div class="mar-t-md">
<button type="submit">Add New Note</button>
</div>
</form>
<section class="notes mar-t-xl">
</section>
</main>
</body>
</html>