Posts

Showing posts from 2015

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