-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 loc) · 1.28 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
<!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>CRUD</title>
<link rel="shortcut icon" href="./img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body id="main-body">
<div class="main" id="form-main">
</div>
<div>
<table class="table">
<thead class="heading">
<tr class="heading-row">
<th id="serial-number">S NO.</th>
<th id="name-head">Name</th>
<th id="email-head">Email</th>
<th id="phone-number">Phone</th>
<th id="edit-head">Edit</th>
<th id="del-head">Delete</th>
</tr>
</thead>
<tbody id="t-body">
</tbody>
</table>
</div>
<script src="./js/index.js"></script>
</body>
</html>