🔹 1. Introduction to HTML
• What is HTML?
• History & evolution (HTML5)
• Use of HTML in web development
• Structure of an HTML document
• Tags, elements, and attributes
________________________________________
🔹 2. Basic HTML Structure
• <!DOCTYPE html>
• <html>, <head>, <body>
• Title and metadata (<title>, <meta>)
• Line breaks and spacing
________________________________________
🔹 3. Text Formatting Tags
• Headings: <h1> to <h6>
• Paragraphs: <p>
• Bold, Italics, Underline: <b>, <i>, <u>
• Superscript & Subscript: <sup>, <sub>
• Horizontal line: <hr>, Line break: <br>
________________________________________
🔹 4. Lists
• Ordered List: <ol> and <li>
• Unordered List: <ul> and <li>
• Nested lists
• Description List: <dl>, <dt>, <dd>
________________________________________
🔹 5. Links and Anchors
• Anchor tag: <a href="">
• Target attribute (_blank, _self)
• Linking to external/internal pages
• Linking to specific sections with id
________________________________________
🔹 6. Images in HTML
• <img src=""> and alt attribute
• Image formats supported
• Image size and alignment
• Wrapping text around images (basic using align)
________________________________________
🔹 7. Tables in HTML
• <table>, <tr>, <td>, <th>
• Table attributes: border, cellpadding, cellspacing
• Rowspan and Colspan
• Styling tables (inline CSS)
________________________________________
🔹 8. Forms in HTML
• <form> tag and its attributes
• Input types: text, password, email, checkbox, radio, submit, reset
• <textarea>, <select>, <option>, <label>
• Form validation basics using HTML5 (required, minlength, type)
________________________________________
🔹 9. Multimedia in HTML
• Embedding videos: <video> tag
• Adding audio: <audio> tag
• Embedding YouTube videos using <iframe>
________________________________________
🔹 10. HTML5 Semantic Elements
• <header>, <footer>, <section>, <article>, <nav>, <aside>, <main>
• Difference between semantic and non-semantic tags (<div> vs <section>)
________________________________________
🔹 11. Inline vs. Block Elements
• Examples of inline elements (<span>, <a>, <img>)
• Block-level elements (<div>, <p>, <h1>)
________________________________________
🔹 12. Using <div> and <span>
• Creating containers for layout
• Styling with CSS (basic preview)
________________________________________
🔹 13. Introduction to HTML + CSS
• Adding style with the style attribute
• Internal CSS using <style>
• Preview of external CSS with <link>
• Basic color, background, font styling
________________________________________
🔹 14. HTML Entities and Symbols
• , <, >, &, ©, etc.
________________________________________
🔹 15. HTML Comments and Best Practices
• Writing comments: <!-- comment -->
• Clean code and indentation
• Code readability tips
________________________________________
🔹 16. Creating a Complete Basic Web Page
• Personal bio webpage
• Web resume/portfolio
• Simple form submission page