Course Content
Introduction to the Web & How Websites Work
This lesson explains what web design is and why it matters. Students learn how the internet works, including the roles of browsers, servers, and websites. It introduces the basic building blocks of a website—HTML for structure, CSS for style, and JavaScript for interactivity—and clarifies the difference between web design and web development. The lesson also highlights essential tools like text editors, browsers, and online resources to get started.
0/3
Getting Started with HTML
HTML (HyperText Markup Language) is the standard language used to create and structure content on the web. It defines the building blocks of every website. What HTML does: HTML is the foundation of every website, giving structure to web pages. It uses tags like <h1>, <p>, and <img> to define content. A basic HTML page has , , , and . The contains metadata (title, styles), while the holds visible content. HTML works together with CSS (design) and JavaScript (functionality).
0/8
WordPress Basics
In this module, we will explore the foundation of WordPress, the most popular Content Management System (CMS) for building websites. You’ll learn how to set up WordPress, navigate the dashboard, and understand key features such as posts, pages, themes, and plugins. By the end, you’ll be able to manage a WordPress site with confidence and customize it to suit your needs.
0/10
Web Design

Text is one of the most important parts of any webpage. HTML provides different tags to organize and style text properly.

1. Headings (<h1> to <h6>)

Define titles and subtitles.

<h1> is the most important heading (main title).

<h6> is the least important (smallest subtitle).

Example:

 
<h1>Main Title</h1>
<h2>Subtitle</h2>
<h3>Section Heading</h3>

2. Paragraphs (<p>)

Used for blocks of text.

Browsers automatically add spacing before and after paragraphs.

Example:

 
<p>This is a paragraph of text.</p>

3. Text Formatting
HTML has inline tags to emphasize or style text:

<b>Bold text

<i>Italic text

<u> → Underlined text

<strong> → Important text (semantic bold)

<em> → Emphasized text (semantic italic)

<mark> → Highlighted text

<small> → Smaller text

<sup> / <sub> → Superscript / Subscript

Example:

 
<p>This is <b>bold</b>, <i>italic</i>, and <u>underlined</u>.</p>
<p>This is <strong>important</strong> and <em>emphasized</em>.</p>

Summary

Headings (<h1><h6>) organize content into titles and sections.

Paragraphs (<p>) group text into readable blocks.

Text formatting tags (like <b>, <i>, <u>, <strong>, <em>) add emphasis and style.

Scroll to Top