-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (34 loc) · 933 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Employee Details</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Add Employee Details</h1>
<table>
<tr>
<form class="" action="index.html" method="post">
<td>
<label>EmployeeID</label><br>
<input type="text" name="" value=""><br>
</td>
<td>
<label>Employee Name</label><br>
<input type="text" name="" value=""><br>
</td>
<td>
<label>Age</label><br>
<input type="number" name="" value=""><br>
</td>
<td>
<label>Designation</label><br>
<input type="text" name="" value="">
<input type="submit" value="ADD" >
</td>
</form>
</tr>
</table>
</body>
</html>