-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 974 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
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Document</title>
</head>
<body>
<header class="container">
<h1>My Notes App</h1>
<form action="">
<input type="text" placeholder="Note title" id="note-title">
<textarea name="" id="note-text" placeholder="Note details"></textarea>
<button id="add-btn">Add Note</button>
</form>
</header>
<section>
<div class="container">
<h2>Your Notes</h2>
<hr>
<div id="notes">
<!-- <div id="note">
<p class="note-counter">Note 1</p>
<h1 class="note-title">Hello</h1>
<p class="note-text">Some Note text</p>
<button class="note-btn">Delete Note</button>
<button class="note-btn edit-btn">Edit Note</button>
</div> -->
</div>
</div>
</section>
<script src="index.js"></script>
</body>
</html>