-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1003 Bytes
/
index.html
File metadata and controls
42 lines (42 loc) · 1003 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="stylesheet.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<div id="header">
<h1>My very own notebook</h1>
</div>
<div id="form">
<form>
<textarea
rows="10"
cols="16"
name="content"
placeholder="Write your note here"
></textarea>
<br />
<a href="https://www.webfx.com/tools/emoji-cheat-sheet/"
>Emojis you can use in your note!</a
>
<br />
<br />
<button id="bttn">Save</button>
</form>
<br />
</div>
<div id="display">
Saved notes
<div id="notes-container"></div>
<div id="note"></div>
</div>
<script src="app.js" defer></script>
<script src="testing-framework.js" defer></script>
</body>
</html>