-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.01 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.01 KB
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
<!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="style.css">
<title>Notes App</title>
</head>
<body>
<nav class="navbar">
<div id="logo">Notes App</div>
<ul>
<li> <a href="#">Home</a> </li>
</ul>
<form class="form-group" action="#">
<input type="search" name="search" id="search" placeholder="Search">
<button id="btn">Search</button>
</form>
</nav>
<div class="container">
<h1>Welcome to Notes App</h1>
<div class="border">
<label for="addNote">Add a Note</label> <br>
<textarea name="textarea" id="textarea" cols="80" rows="5"></textarea> <br>
<button id="myBtn">Add Note</button>
</div>
<hr class="hrStyle">
<h1>Your Notes</h1>
<hr class="hrStyle">
<div id="notes" class="notesBox"> </div>
<script src="script.js"></script>
</body>
</html>