-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the HTML wiki!
This lesson plan is designed for absolute beginners. No prior programming knowledge is required.
Each lesson focuses on one concept only and uses simple examples.
File: 00-what-is-html.html
- What HTML means (HyperText Markup Language)
- What HTML is used for
- HTML is not a programming language
- Only text and comments
- Use only the
<p>tag - No styling, no links, no images
File: 01-html-structure.html
<!DOCTYPE html>-
<html>,<head>,<body> <title>
Students understand the basic skeleton of every HTML page.
File: 02-headings.html
-
<h1>to<h6> - Importance of using
<h1>correctly
Explain that headings are used for structure, not size.
File: 03-paragraphs.html
-
<p>tag -
<br>tag - Line breaks in text
File: 04-text-formatting.html
-
<b>and<strong> -
<i>and<em> <u>
Explain semantic meaning simply.
File: 05-links.html
-
<a>tag -
hrefattribute - Opening external websites
File: 06-images.html
-
<img>tag -
srcattribute -
altattribute (very important)
File: 07-lists.html
- Ordered list
<ol> - Unordered list
<ul> - List item
<li>
File: 08-tables.html
<table>-
<tr>,<th>,<td>
- No CSS
- Keep tables very simple
File: 09-forms-basics.html
-
<form>tag -
<input>tag -
<label>tag
File: 10-input-types.html
- text input
- password input
- email input
- submit button
File: 11-div-span.html
- Difference between
<div>and<span> - Block vs inline elements (simple explanation)
File: 12-simple-profile-page.html
- Heading
- Image
- Paragraph
- List
- Link
File: 13-simple-form-page.html
- Name field
- Email field
- Password field
- Submit button
These rules apply to every lesson file:
β One concept per file
β Clear comments
β No CSS
β No JavaScript
β Simple English
β Beginner-friendly
After completing this lesson plan, a learner should be able to:
- Create simple HTML pages
- Understand basic HTML structure
- Be ready to learn CSS next
π± Who This Curriculum Helps
School students, College beginners, Non-CS learners, People scared of coding...