HTML FORM CODE
Do you know how to make form using html. Don't worry in this article I have explained how to create a form using HTML with simple method.
The steps are given below 👇
1. First you can copy the html code given below.
2. You can paste the html code on notepad in your computer or laptop.
3. You can click save as option.
4. Select the location where you can save your notepad.
5. Right click on notepad which you can save.
6. Select open with option.
7. Select a browser like google chrome, opera etc.
8. Then you can see your form on your browser.
9. If you can edit your form then you can open your notepad which you can save last time.
10. Edit your html code then click save.
<HTML>
<HEAD>
<TITLE>Form In
Html</TITLE>
<BODY
BGCOLOR="#12AB32">
<FORM>
<CENTER><U><H1>STUDENT
INFORMATION</H1></U></CENTER>
<FONT SIZE=4>
<P>First Name :
<input type></p>
<P>Phone NO :
<input type></p>
<P>Address :
<BR> <BR>
<TEXTAREA
NAME="address" ROWS="4"
COLS="60"></TEXTAREA>
<P>Email-ID (if
any) : <INPUT TYPE>@
<SELECT>
<OPTION>yahoo.com</OPTION>
<OPTION>gmail.com</OPTION>
<OPTION>hotmail.com</OPTION>
<OPTION>rediffmail.com</OPTION>
<OPTION>outlook.com</OPTION>
</SELECT>
<P>Password :<
INPUT TYPE="password" NAME="passwords"
size="10">
<P> I am :
<INPUT TYPE="RADIO" NAME="MALE"
VALUE="MALE">MALE
<INPUT
TYPE="RADIO" NAME="MALE" VALUE="MALE">FEMALE
<INPUT
TYPE="RADIO" NAME="MALE" VALUE="MALE">OTHERS
<P>I am a student
of :
<SELECT>
<OPTION>DCAM
(j.s)</OPTION>
<OPTION>DCM
(j.s)</OPTION>
<OPTION>PGDCA</OPTION>
<OPTION>ADCM</OPTION>
<OPTION>DTP</OPTION>
<OPTION>CCOA</OPTION>
<OPTION>DFA</OPTION>
<OPTION>CCFA</OPTION>
</SELECT>
<SELECT>
<OPTION>12
MONTHS</OPTION>
<OPTION>6
MONTHS</OPTION>
<OPTION>3
MONTHS</OPTION>
<OPTION>9
MONTHS/OPTION>
</SELECT>
<BR> <BR>
<CENTER>
<BUTTON
TYPE="RESET" NAME="SUBMIT"
VALUE="RESET"><IMG SRC="C:\Documents and Settings\M DEKA\My
Documents\My Pictures\1234.jpg" HEIGHT=40 WIDTH=40>SUBMIT
FORM</BUTTON>
</CENTER>
</FONT>
</BODY>
</HTML>
0 Comments