-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (48 loc) · 1.22 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
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Sticky notes</title>
<link
href="https://fonts.googleapis.com/css?family=Reenie+Beanie&display=swap"
rel="stylesheet"
/>
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" href="style.css" />
<link rel="manifest" href="manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="heading">
<h1>Stick-It Notes</h1>
<p id="ts">By Simran Biswas</p>
</div>
<div id="form">
<form id="inputForm">
<input
type="text"
class="inputText"
placeholder="Title"
id="new-note-title-input"
autocomplete="off"
required
autofocus
/>
<input
class="inputText"
type="text"
placeholder="Note Content"
id="new-note-body-input"
autocomplete="off"
required
/>
<button type="submit" class="btn">
Create Note
</button>
</form>
</div>
<h3 id="no-notes" >No Notes Found, Add one!</h3>
<ul id="notes"></ul>
<script src="script.js"></script>
</body>
</html>