-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (49 loc) · 1.38 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!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>Note Taking App</title>
<link rel="stylesheet" href="./style.css" />
<script src="main.js"></script>
</head>
<body>
<!-- Background -->
<!-- Header -->
<header>
<div class="logo">
<h2>Note App</h2>
</div>
<div class="search">
<input type="text" id="srch" placeholder="Search a Note..." />
</div>
</header>
<!-- Container -->
<div id="con-body" class="container">
<!-- Input Form -->
<div class="inp-frm">
<form id="add-frm" action="">
<h3>Add a Note</h3>
<input type="text" id="n-title" placeholder="Title..." />
<textarea id="n-body" placeholder="Note Body..."></textarea>
<button type="submit" id="save">Save</button>
<button type="reset" id="reset">Reset</button>
</form>
</div>
<!-- Table -->
<div id="tbl-div" class="table">
<table id="items">
<tr>
<th>Title</th>
<th>View</th>
<th>Delete</th>
</tr>
</table>
</div>
</div>
<div id="bg"></div>
<!-- External Script -->
<script src="./main.js"></script>
</body>
</html>