Tag Definition :)
Tag Definition :)
<!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