0% found this document useful (0 votes)
65 views1 page

Harshitha HTML

Html

Uploaded by

neetjourney02
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
65 views1 page

Harshitha HTML

Html

Uploaded by

neetjourney02
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Form code

<!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>

You might also like