Posts

How to create simple registration form in html

=> open ur text editer :- => And save it as registrationform.html and write below code:- <html> <body> <table border = "0" width = "1000" bgcolor = "skyblue" align = "center" > <tr> <td valign = "top" width = "50%" > <h2> General details </h2> <table width = "100%" > <tr> <td width = "70%" ><b> Company Name </b><br /> <input type = "text" size = "55" ><td> <td><b> Categories </b><br/> <select width = "10" > <option> Automobile </option> <option> Computer </option> <option> Civil </option> <option> Electrical </option> <option> Mechanical </option> </selec...

How to create simple biodata form in html

=> open ur text editer :- => And save it as bidata.html and write below code:- <html> <body> <table width="800" border="0" align="center" cellpadding="5"> <tr> <td colspan="2">Basic Info<hr/></td> </tr> <tr> <td width="50%" align="right">Full Name:</td> <td>ABC H. XYZ</td> </tr> <tr> <td align="right">Father's Name:</td> <td>HIJ K. XYZ</td> </tr> <tr> <td align="right">Age:</td> <td>22 Years</td> </tr> <tr> <td align="right">Date of Birth:</td> <td>15<sup>th</sup> March</td> </tr> <tr> <td align="right">Religion:</td> <td>PATEL</td...

how to create simple form in html

=> open ur text editer :- => And save it as form.html and write below code:- <html> <body> <form> Name <br/> <input type="text" size="30" value="ABC"> <br/><br/> Password <br/> <input type="password" > <br/><br/> Phone<br/> <input type="tel" name="Phone" maxlength="10"> <br/><br/> Gender <input type="radio" name="gender" value="M" checked>Male <input type="radio" name="gender" value="F">Female <br/><br/> Language <input type="checkbox" checked>English <input type="checkbox">Hindi <br/><br/> Eduction <Select> <option>Graduation</option> <option selected>Post Graduat...

how to create table in html example two

=> open ur text editer :- => And save it as table_demo2.html and write below code:- <html> <body> <table align="center" border="0" title="details" width="200"> <tr> <td align="center">no.</td> <td align="center">name</td> <td align="center">roll no</td> <td align="center">id</td> </tr> <tr> <td colspan="4"><hr> </tr> <tr bgcolor="#f1f1f1"> <td>1</td> <td>abc</td> <td>01</td> <td>1030211101</td> </tr> <tr> <td>2</td> <td>xyz</td> <td>02</td> <td>1030211102</td> </tr> <tr bgcolor="#f1f1f1"> <td>3</td> <td>def</td> ...

how to create table in html example one

=> open ur text editer :- => And save it as table_demo1.html and write below code:- <html> <body> <table align="center" border="1" title="details" width="200"> <tr> <td align="center">no.</td> <td align="center">name</td> <td align="center">roll no</td> <td align="center">id</td> </tr> <tr> <td colspan="4"><hr> </tr> <tr bgcolor="#f1f1f1"> <td>1</td> <td>abc</td> <td>01</td> <td>1030211101</td> </tr> <tr> <td>2</td> <td>xyz</td> <td>02</td> <td>1030211102</td> </tr> <tr bgcolor="#f1f1f1"> <td>3</td> <td>def</td> ...

How to give link in html

=> open ur text editer :- => And save it as demo1.html and write below code:- <html> <body> <a href="img/img.html">image file</a><br/> <a href="../img/img.html">image file2</a> </body> </html> =>then u make one folder give name img then open and save another file name is img.html :- <html> <body> <img src="Images\wallpaper1.jpg" height="200" width="200" alt="nature" title="nature" /> </body> </html> =>then run on ur browser. =>if u download source code then click on below link :- Download Source Code

Basic tags of HTML

=> open ur text editer :- => And save it as demo.html and write below code:- <html> <body> Hello word<br/> <hr> <h1>Heading 1</h1> <h2>Heading 2</h2> <h6>Heading 6</h6> <hr> <b>Bold</b><br /> <strong>Strong</strong><br /> <i>italic</i></br> <em>emphasis</em></br> <u>undeline</u><br /> <b>Nesting </b> <i>of</i> <i><u>tags</i></u><br /> <big>Big</big><br /> <small>Small</small><br /> <strike>Strikr</strike><br /> <tt>Typewriter Text</tt><br /> 1<sup>st rank<sup><br /> H<sub>2</sub>o<br /> <hr> <ul> <li>unorderd list item</li> <li>unorder...