sop 3 create a webpage with following specifications
display heading application form in highest heading with centre alignment
accept name standard 11th or 12th with only one selection choice
submit the form
Answers
Answered by
48
Answer:
<html>
<head>
</head>
<body>
<h1 style="align:center;">Application form</h1>
<input type="radio" >Class 11
<input type="radio" >Class 12
<input type="submit" value="Submit" >
</body>
Explanation:
Answered by
2
Answer:
The correct answer is creating application form using HTML.
Explanation:
<html>
<head>
</head>
<body>
<h1 style="align:left;">APPLICATION FORM FOR FRESH ADMISSION YEAR 2022 </h1>
<input type="checkbox">
Class 11 grade
<input type="checkbox"> Class 12 grade
<input type="submit" value="submit">
</body>
#SPJ3
Similar questions