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>