11th Class . IT(Information Technology) Skill Set 2 - HTML -5 . Sop-3
STD: 11th. Subject: IT(Information Technology)
Web Designing (HTML - 5)
Skill Set 2 - HTML -5
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 :
<!DOCTYPE html>
<html>
<head>
<title>Sop.3</title>
</head>
<body>
<h1 style="text-align: center;">Application Form</h1>
<form>
Enter Name: <input type="text" name="name" required><br>
Standard:
<select name="standard" required>
<option value="" disabled selected>Select Standard</option>
<option value="11th">11th</option>
<option value="12th">12th</option>
</select><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Output:
1. open notepad in your pc.
2. Write this Code
3. Save this Code and Remember, Write .html in last .
4. open this code in any browser.
Comments
Post a Comment