-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.16 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.16 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
35
36
37
38
39
40
41
<!DOCTYPE html>
<body style="background-color:powderblue;"></body>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="stylesheet.css">
<title>web app</title>
</head>
<body>
<main>
<label>Name:</label>
<input type="text" id="name-input">
<button id="add-name-btn">Add Name</button>
<br><br><br>
<div>
<input hidden placeholder="search by name" id="search-input">
<button hidden id="search-btn">Search</button>
</div>
<table id="table">
<thead>
<th>ID</th>
<th>Name</th>
<th>Date Added</th>
<th>Delete</th>
<th>Edit</th>
</thead>
<tbody></tbody>
</table>
<section hidden id="update-row">
<label>Name:</label>
<input type="text" id="update-name-input">
<button id="update-row-btn">Update</button>
</section>
</main>
<script src="index.js"></script>
</body>
</html>