HTML Syllabus
1. Introduction to HTML
- What HTML is: Purpose (structure of a webpage), role in web development
- HTML Document Structure:
<!DOCTYPE html>
<html>, <head>, <title>, <body>
- How browsers interpret HTML
2. HTML Elements & Tags
- HTML syntax basics (
<tagname>content</tagname>)
- Common elements:
- Headings:
<h1> to <h6>
- Paragraphs:
<p>
- Links:
<a>
- Images:
<img>
- Lists:
<ul>, <ol>, <li>
- Attributes:
id, class, title
- How attributes modify elements
3. Text Formatting
- Formatting tags:
- Bold:
<b> / <strong>
- Italic:
<i> / <em>
- Underline:
<u>
- Strikethrough:
<s> / <del>
- Headings hierarchy (
<h1> to <h6>) and when to use each
4. Links
- Creating hyperlinks with
<a>
- Internal links (same website) vs external links (other websites)