-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew-note.html
More file actions
24 lines (24 loc) · 779 Bytes
/
Copy pathnew-note.html
File metadata and controls
24 lines (24 loc) · 779 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add Note</title>
<link rel="stylesheet" href="new-note.css">
</head>
<body>
<div class="central-div">
<div class="main-title">new note</div>
<div class="title-div">title</div>
<form action="">
<input type="text" placeholder="Note Title" />
<div class="content-div">content</div>
<textarea placeholder="Start writing..."></textarea>
</form>
<div class="link-container">
<a href="index.html" class="btn" id="btn-1">cancel</a>
<a href="index.html" class="btn" id="btn-2">save</a>
</div>
</div>
</body>
</html>