-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-note.html
36 lines (35 loc) · 1.27 KB
/
new-note.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Notes</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<header>Apple Developers Group</header>
<body>
<div id="myModal" class="new-note Modal">
<div class="Modal-content">
<h1>Add New Note</h1>
<form action="index.html">
<div>
<label for="title">Title</label>
<input type="text" name="title" id="title" />
</div>
<div>
<label for="message">Message</label>
<textarea
name="message"
id="message"
cols="30"
rows="10"
></textarea>
</div>
<button class="btn" type="submit">Add New Note</button>
</form>
</div>
</div>
</body>
<footer>© Code Node 2021</footer>
</html>