<lable> Use this tag?
Answers
Answer:
Explanation:
<html>
<head>
<title>Label Tag</title>
</head>
<body style = "text-align:center">
<h1 style = "color:green">sample paper</h1>
<h2>label tag</h2>
<form>
<label for = "student">
Student
</label>
<input type = "radio" name = "Occupation"
id = "student" value = "student"><br>
<label for = "business">
Business
</label>
<input type = "radio" name = "Occupation"
id = "business" value = "business"><br>
<label for = "other">
Other
</label>
<input type = "radio" name = "Occupation"
id = "other" value = "other">
</form>
</body>
</html>