HTML BASICS
1. Structure of an HTML Document
- <!DOCTYPE html>
- <html>, <head>, <body>
2. Common Tags
- Headings: <h1> to <h6>
- Paragraphs: <p>
- Links: <a href="URL">text</a>
- Images: <img src="path" alt="description">
- Lists: <ul>, <ol>, <li>
3. Semantic Elements
- <header>, <nav>, <main>, <section>, <article>, <footer>
4. Forms and Inputs
- <form>, <input>, <label>, <button>, <select>, <textarea>
5. Tables
- <table>, <tr>, <td>, <th>, <thead>, <tbody>, <tfoot>