Html Basic Tags 11 to 15

 



Hey Guys! Today we are going to discuss about Next 5 Html tags from 11 to 15 on mycode-notes. So, Let's grt staarted:


11-IMG:

                img tag is used to insert an image in the html document. like <img></img> opening and closeing tag. It can be use like.


we can add any image in a html document with img tag.

12- Width:

                    Width is not a tag, it is basically an attribute which is use to set width of an object 

may be img or text. Methord to use width attribute is shown below:



This can be done by css and it's preffred to do it with css.

13-Hight:

                 Hight is not a tag, it is basically an attribute which is use to set hight of an object 

may be img or text. Methord to use hight attribute is shown below:




   This can be done by css and it's preffred to do it with css.

14-Colour:

                     Also an attribute of html tags. with the help of this we can change colour of any html elementMethord to use hight attribute is shown below:



15-Table:

                Table tag is use to insert table in an Html document of muiltipl dimension (Row x column).


Now there are three things in Table tag  <Ttable></table>.

1- <th></th> Th stand for Table Headings or columns entry.
2- <tr></tr> Tr stand for Tablr rows.
3- <td></td> Td stand for table data.




Comments