write HTML code for to create a list of five snacks item it should allow multiple selection by the user buttons should be provided for creating and submitting the form
Answers
Answered by
0
Answer:
An HTML form can contain input elements, checkbox, radio buttons, submit button and more. ... form is build inside <form> tag. ... The input element is used to get user information.
Answered by
3
Answer:
<! doctype html>
<html>
<head>
<title>snacks</title>
</head>
<form>
select menu:<input type="radio" name="r1">berger<br>
<input type="radio" name="r2">sandwich<br>
<input type="radio" name="r3">pizza<br>
<input type="radio" name="r4">pav bhaji<br>
<input type="radio" name="r1">noodles<br>
<input type="submit">
<input type="reset">
</form>
</html>
Similar questions