0% found this document useful (0 votes)
52 views2 pages

Tag Definition :)

The document defines common HTML tags used to structure and style web pages. Some key tags include <html> for the document root, <head> for meta information, <body> for content, <h1-h6> for headings, <p> for paragraphs, <a> for hyperlinks, <img> for images, and <table> for defining tables with <tr> for rows and <td> for cells. It also covers tags for lists, emphasis, divisions, and comments in HTML, CSS, and Python.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
52 views2 pages

Tag Definition :)

The document defines common HTML tags used to structure and style web pages. Some key tags include <html> for the document root, <head> for meta information, <body> for content, <h1-h6> for headings, <p> for paragraphs, <a> for hyperlinks, <img> for images, and <table> for defining tables with <tr> for rows and <td> for cells. It also covers tags for lists, emphasis, divisions, and comments in HTML, CSS, and Python.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

HTML TAGS

Definition for HTML tags:

<!DOCTYPE>: Defines the document type <html> </html> : Defines the root of an HTML document <head> </head> : Defines information about the document <title> </title> : Defines a title for the document <body> </body> : Defines the documents body <h1 h6> </h1 /h6>: Defines a header <p> </p> : Defines a paragraph <span> </span>: To style a part of a text <div> </div>: Defines a division <strong> </strong>: Defines important text <em> </em>: To emphasized text <ol> </ol>: Defines an unordered list <ul> </ul>: Defines unordered list <li> </li>: Defines a list item <a> </a>: Define a hyperlink <href>: Specifies URL of the page where the link goes to <img>: Defines an image <src>: Defines a source <rel>: Specifies relationship between the current document and the linked document

<link>: Define a relationship between document an external resource <table> </table>: Defines a table <thead> </thead>: Groups the header content in a table <th> </th>: Defines a table header <tr> </tr>: Defines a table row <td> </td>: Defines a table data px: pixel <!-- -->: Defines a comment in HTML //: Define a single line of comment in CSS /* */: Defines multi-line comment in CSS #: Defines a single line of comment in Python : Defines multi-line comments in Python

You might also like