Skip to main content

How to insert table in html

                    Content

1) Table tag
2) Tr tag
3) Td tag

                         Table Tag

Table tag is used to tell browser that ee are going to work on table, it is written at the top from where we start coding of table. To make a table we have to understand some other tags such as tr and td tags

<html>
<body>
<table>
<tr>
<td>hello</td>
</tr>
</table>
</body>
</html >

                             Tr tag

Tr tag is used to make the row of the table 
It is started by <tr> and end with </tr>. 

<html>
<body>
<table>
<tr>
<td>hello</td>
</tr>
</table>
</body>
</html >

                             Td tag

Td tag is used to enter data in tr tag 
It is placed inside the tr tag

<html>
<body>
<table>
<tr>
<td>hello</td>
</tr>
</table>
</body>
</html >

            Video tutorial 




Hope you like 
Please share it to your friends 
Have a great day 

Comments

Popular posts from this blog

Basic of HTML

                        HTML Html is a Hypertext Markup language ,which is used to develop web applications ,Android applications,etc. Browsers do not understand our communication language they have their own language in this blog we will learn one of them language  There are many languages which browsers support.Some of them are :-          DIFFERENT LANGUAGES

What are Tags and Attributes ?

The most important things you should know Today we will cover what are Tags and Attributes and how we use them in html  

Marquee Tag and paragraph Tag

  Content of the post 1)Marquee tag 2)Paragraph tag 3)Fieldset tag 4)Legend tag