Computer Science, asked by akshaysonar18, 4 months ago

Write a HTML program to following display​

Attachments:

Answers

Answered by harsh685358
1

<html lang="en">

<body style="background-color: rgb(255, 174, 0);">

   <h1>Use Of form</h1>

   Enter your name :<input type="text"> <br>

   Enter your standard: <input type="radio" name="" id=""> 11 <input type="radio" name="" id=""> 12 <br>

   Choose your optional subjects <br>

   <input type="checkbox" name="" id="">Hindi <br>

   <input type="checkbox" name="" id="">German <br>

   <input type="checkbox" name="" id="">Biology <br>

   <input type="checkbox" name="" id="">IT <br>

   <input type="checkbox" name="" id="">Mathematics <br>

   <input type="button" value="Submit">

</body>

</html>

Similar questions