Skip to content

Commit f1e2228

Browse files
Update Question6.html
1 parent 636acb4 commit f1e2228

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

templates/Question6.html

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
4-
<title>Employee</title>
4+
<meta charset="UTF-8">
5+
<title>Employee Type</title>
56
</head>
67
<body>
7-
<h1>Employee Form</h1>
8-
<form>
9-
<div>
10-
<label for="employee_type">Employee Type :</label>
11-
<input type="radio" name="sal">Salaried</input>
12-
<input type="radio" name="self">Self employed</input>
13-
</div>
14-
</form>
8+
9+
<form>
10+
<label>
11+
<input type="radio" name="employeeType" value="salaried" required>
12+
Salaried
13+
</label>
14+
15+
<label>
16+
<input type="radio" name="employeeType" value="business">
17+
Own Business
18+
</label>
19+
</form>
20+
1521
</body>
1622
</html>

0 commit comments

Comments
 (0)