-
Notifications
You must be signed in to change notification settings - Fork 0
/
employee.html
40 lines (40 loc) · 859 Bytes
/
employee.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
<html lang="en">
<head>
<title>Employee</title>
</head>
<body>
<center>
<h1>Employee type</h1>
</center>
<form>
<label>
Name
<input type="text" placeholder="Enter your Name">
<br>
</label>
<label>
Age
<input type="number" placeholder="Enter your Age">
<br>
</label>
<label>
Email
<input type="email" placeholder="Enter your Email">
<br>
</label>
<label>
<input type="radio" name="employeeType" value="salaried">
Salaried
</label>
<br>
<label>
<input type="radio" name="employeeType" value="ownBusiness">
Own Business
<br>
</label>
<label>
<input type="submit" name="employeeType">
</label>
</form>
</body>
</html>