-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.34 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<title>table</title>
</head>
<body>
<table id="table" width="15%" boarder="2">
<thead>
<tr>
<th>NAME</th>
<th>LEVEL</th>
<th>AGE</th>
<th>GRADE</th>
<th>TRIBE</th>
<th>DEPARTMENT</th>
<th>HEIGHT</th>
<th>ADDRESS</th>
<th>GENDER</th>
</tr>
<tr>
<th><input type="text" name="NAME" id="NAME"></th>
<th><input type="text" name="LEVEL" id="LEVEL"></th>
<th><input type="text" name="AGE" id="AGE"></th>
<th><input type="text" name="GRADE" id="GRADE"></th>
<th><input type="text" name="GENDER" id="GENDER"></th>
<th><input type="text" name="TRIBE" id="TRIBE"></th>
<th><input type="text" name="DEPARTMENT" id="DEPARTMENT"></th>
<th><input type="text" name="HEIGHT" id="HEIGHT"></th>
<th><input type="text" name="ADDRESS" id="ADDRESS"></th>
</tr>
</thead>
</table>
<button id="btn"> add student</button>
<script src ="app.js"></script>
</body>
</html>