0% found this document useful (0 votes)
3 views1 page

HTML Basics: Structure and Tags

The document provides an overview of HTML basics, including the structure of an HTML document with essential tags like <!DOCTYPE html>, <html>, <head>, and <body>. It covers common tags for headings, paragraphs, links, images, lists, tables, and forms. Each section outlines the relevant HTML elements used for creating web content.

Uploaded by

corporateskubera
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)
3 views1 page

HTML Basics: Structure and Tags

The document provides an overview of HTML basics, including the structure of an HTML document with essential tags like <!DOCTYPE html>, <html>, <head>, and <body>. It covers common tags for headings, paragraphs, links, images, lists, tables, and forms. Each section outlines the relevant HTML elements used for creating web content.

Uploaded by

corporateskubera
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

Class Notes: HTML Basics

1. Structure of an HTML Document

- <!DOCTYPE html>, <html>, <head>, <body>

2. Common Tags

- Headings: <h1> to <h6>

- Paragraph: <p>

- Links: <a href='url'>

- Images: <img src='[Link]' alt='desc'>

3. Lists

- Ordered: <ol><li>Item</li></ol>

- Unordered: <ul><li>Item</li></ul>

4. Tables and Forms

- Table: <table>, <tr>, <td>, <th>

- Form: <form>, <input>, <textarea>, <button>

You might also like