simple form using html

.

  simple form using html


<!DOCTYPE html>

<html>

<head>

<title>web page</title>

</head>

<body bgcolor="blue">

<form method="get">

<fieldset>

<marquee direction="right" scrollamount="20" ><legend><font color="green" size="20">basic information</font></legend></marquee>

Name:<input type="text" name="nm" required><br><br>

Email:<input type="email" name="em" required><br> <br>

age:<input type ="text" name="ag"><br><br>

password:<input type="password" name="ps" required><br><br>

gender:<input type="radio" name="gn">male

<input type="radio" name="gn">female

<input type="radio" name="gn">other<br><br>

city:<select>

<option>pune</option>

<option>mumbai</option>

<option>kolhapur</option>

<option>delhi</option>

    </select><br><br>

education:

<input list="aa">

<datalist id="aa">

<option>btech</option>

<option>bca</option>

<option>bsc</option>

<option>msc</option>

<option>mtech</option>

</datalist><br><br>

<input type="submit" name="sb"><br><br>

<input type="reset" name="rs">

</fieldset>

</form>


</body>

</html>

output:






Post a Comment

Previous Post Next Post