Tuesday, 8 March 2022

XIth HTML SOP 3

SOP 3 : Create a web page with following specification. 
  •  Display heading 'Application Form' in highest heading with center alignment. 
  •  Accept name, standard 11th or 12 th with only one selection choice.
  •  Submit the form.


Solution:-  

<html>

<head>

<title>

HTML SOP 3

</title>

<body>

<h1 align="center">Application Form</h1>

<form name="sop3">

Enter your Name-<input type="text" name="uname"> <br>

Select Std. <input type="radio" name="std"> 11th

<input type="radio" name="std"> X12th <br>

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

</form>

</body>

</html>



No comments:

Post a Comment