0% found this document useful (0 votes)
0 views

HTML Tags Assignment

The document outlines various HTML tags used in an assignment, categorized into structural, metadata, text formatting, table, image, layout styling, and JavaScript tags. It details the purpose of each tag, such as declaring the document type, formatting text, and creating tables. Additionally, it mentions the use of JavaScript for dynamic content generation.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
0 views

HTML Tags Assignment

The document outlines various HTML tags used in an assignment, categorized into structural, metadata, text formatting, table, image, layout styling, and JavaScript tags. It details the purpose of each tag, such as declaring the document type, formatting text, and creating tables. Additionally, it mentions the use of JavaScript for dynamic content generation.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

HTML Tags Used in the Assignment

The HTML file in your assignment uses the following tags:

Structural Tags:
- <!DOCTYPE html> - Declares the document type.
- <html> - Root element.
- <head> - Contains metadata.
- <body> - Contains the main content.

Metadata Tags:
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title> - Sets the page title.
- <style> - Contains internal CSS styles.

Text Formatting Tags:


- <h1>, <h2> - Headings.
- <p> - Paragraphs.
- <b>, <i>, <u> - Bold, italic, underline.
- <span> - Inline styling.

Table Tags:
- <table> - Defines a table.
- <tr> - Table row.
- <th> - Table header cell.
- <td> - Table data cell.

Image Tag:
- <img> - Embeds an image.

Layout Styling:
- class="layout-table" - Used for a structured layout with sections like:
- .header
- .sidebar
- .content
- .footer

JavaScript:
- <script> - Used to dynamically generate bricks for the brick wall layout.

You might also like