Harshitha HTML
Harshitha HTML
<!DOCTYPE html>
<html>
<head>
<title>day 2 session</title>
</head>
<h1>Lets create form</h1>
<form action="">
<h2> Registration from</h2>
<p><label> Enter your name:<input type="text" name= "name"
placeholder="name"/></label></p>
<p><label> Enter contact number:<input type="text" name="number"maxlength
="10"/></label></p>
<p><label> Enter your mail id:<input type="text" name= "name"/></p>
<p><label> Enter your password:<input type="password" name= "name"size
="20"maxlength ="20"/> </label></p>
<p><label> Gender:</label></p>
<p><label><input type="radio" name= "act"/>Male
<input type="radio" name= "act"/>Female</p>
<p>Which of the following Accounts do you have?</label></p>
<p>
<label><input type="checkbox" name="act"/>Gmail</label>
<label><input type="checkbox" name="act" />Facebook</label>
<label><input type="checkbox" name="act" />Twitter</label>
<label><input type="checkbox" name="act" />Google+</label>
</p>
<p> Any Suggestions?</p>
<p> <textarea name="feedback" rows="5" cols="100"> </textarea>
<p>
<p>Click on Submit if you want to register</p>
<p> <input type="SUBMIT" name="SUBMIT"/>
<input type="RESET" name="RESET"/>
</p>
</form>
</body>
</html>