Saturday, April 12, 2014

HTML TUTORIAL PART 4

HTML TUTORIAL PART 4

PROBLEM:
LOOK AT THE FOLLOWING:




SOLVED:
THE CODE BELOW MADE THE HTML TIP:



<html>
<head> <title> Form </title></head>
<body>
<marquee bgcolor="plum"> <h1> Admission Open </h1> </marquee>
<p>
<marquee direction=Right bgcolor="aqua"> in Class 11 </marquee>
<p>
<form method="Post" action="mailto:yskomail@gmail.com">
First Name : <input type="text" Name="First Name" Max length=15>
<p>
Last Name: <input type="text" Name="Last Name" Max length=10>
<p>
Password : <input type="Password" Name="password" Max length="8">
<p>
Address : <textarea> </textarea>
<p>
Gender : <input type="radio" Name="Gender" Value="M"> Male <input type="radio" Name="Gender" Value="F"> Female
<p>
Which your school : <input type="Checkbox" Name="school" Value="Private"> Private <input type="Checkbox" Name="school" Value="Gon"> Government
<p>
Select Faculty :
<select>
<option> Humanities
<option> Education
<option> Science
<option> Management
</select>
<p>
<input type="Submit" Value="Post"> <input type="Reset" Value="Reset">
</form>

</body>
</html>

No comments:

Post a Comment