Std. XI I.T || Skill Set 2 - HTML5 || SOP 3


SOP3: Create a webpage with the following specification.
·        Display heading ‘Application Form’ in highest heading with center alignment.
·        Accept name, standard 11th or 12th with one selection choice.
·        Submit the form.


HTML Code
<!DOCTYPE html>
<html>
<head>
<title>sop3</title>
</head>
<body>
<h1 align="center">Application Form</h1>
<form name="application">
Name <input type="text" name="n"><br><br>
Standard <input type="radio" name="s" value="XI">11<sup>th</sup>
<input type="radio" name="s" value="XII">12<sup>th</sup><br><br>
<input type="submit" name="submit" value="Submit">
</form>
</body>
</html>

Output


Note: For detailed steps of execution refer Std. XI I.T || Skill Set 2 - HTML5 || SOP 1

Comments

Popular posts from this blog

Std XI I.T || Skill Set 3 – JavaScript || SOP1

Std. XI I.T || Skill Set 2 - HTML5 || SOP 4

Std XI I.T || Skill Set 3 – JavaScript || SOP3