Computer Science, asked by udboss81, 5 months ago

Create a code in an HTML to display the following form on a web page ​

Attachments:

Answers

Answered by 1609900dmkavyasri
0

Answer:

<!DOCTYPE html>

<html>

<body>

<h2>Radio Buttons</h2>

<p>Choose your favorite Web language:</p>

<form>

 <input type="radio" id="html" name="fav_language" value="HTML">

 <label for="html">HTML</label><br>

 <input type="radio" id="css" name="fav_language" value="CSS">

 <label for="css">CSS</label><br>

 <input type="radio" id="javascript" name="fav_language" value="JavaScript">

 <label for="javascript">JavaScript</label>

</form>

</body>

</html>

Similar questions