HTML Full Course Syllabus
- Module 1. Basics of HTML
- Introduction to Web & HTML
-
Structure of an HTML Document
(
<!DOCTYPE html>,
<html>,
<head>,
<body>)
- Basic Tags:
- Headings (
<h1> – <h6>)
- Paragraphs (
<p>)
- Line breaks & horizontal rules (
<br>, <hr>)
- HTML Comments
- Module 2. Text Formatting Tags
- Bold, Italic, Underline (
<b>, <i>, <u>)
- Strong & Emphasis (
<strong>, <em>)
- Superscript & Subscript
- Module 3. Links & Navigation
- Anchor Tag (
<a>)
- Relative vs Absolute Paths
- Opening links in a new tab
- Module 4. Images & Media
- Image Tag (
<img>)
- Audio & Video Tags (
<audio>, <video>)
- IFrames
- Module 5. Lists
- Ordered List (
<ol>)
- Unordered List (
<ul>)
- Definition List (
<dl>)
- Module 6. Tables
-
<table>,
<thead>,
<tbody>,
<tfoot>
- Rowspan & Colspan
- Module 7. Forms
- Input Types: text, number, email, radio, checkbox, file, password
-
<select>,
<textarea>,
<button>
- Form Validation (required, pattern)
- Module 8. Semantic HTML
-
<header>,
<nav>,
<section>,
<article>,
<aside>,
<footer>
- Accessibility basics (Alt text, ARIA roles)