Monday, 30 September 2013

how to create a table using html

hello friends

friends to show a better and manner understanding you use table and charts
so friends i will tell you how to create a table in html

friends
you have to write following code-
<html>
<head>
<title> my page</title>
<body>
<table border="2">
<tr>
<td>name</td>
<td>age</td>
</tr>
<tr>
<td>chetan</td>
<td>20</td>
</tr>
</body>
</head>
</html>
output of following code 

Thank you

Friday, 27 September 2013

how to use radio button in html

hello friends

Today i will show you how to create radio button in our web page using html
So friend write these code

<html>
<head>
<body>
<form>
<input type="radio" name ="education" value="10"> 10th
</form>
</body>
</head>
</html>

Friend with the help of this code you will see the following output
Add caption
Thank you friend

Monday, 23 September 2013

how to add background image in html

hello friends

today i will tell you how to add background image in html
you have to write following code in the html page
<html>
<head>
<body background="download.jpg">
</body>
</head>
</html>


Thank you friends

how to create textbox using html

hello friends

today i will tell you how to make text box in html

suppose you want make student name textbox which is use for storing the name of student name

you have to write these code

<html>
<head>
<body>
<form>
<label> student name</label>
<input type=studentname name="student name">
</form>
<head>
</html>

friends after that you will see that you textbox will be created ]

thank you