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

Lists help organize content in a clear and readable way. HTML supports unordered lists (bullets) and ordered lists (numbers).

1. Unordered List (<ul>)

Displays items with bullets.

 
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>

Output:

HTML

CSS

JavaScript

2. Ordered List (<ol>)

Displays items with numbers or letters.

 
<ol>
<li>Introduction</li>
<li>Body</li>
<li>Conclusion</li>
</ol>

Output:

Introduction

Body

Conclusion

3. Nested Lists

You can put lists inside another list.

 
<ul>
<li>Frontend
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
</li>
<li>Backend</li>
</ul>

4. List Attributes (for <ol>)

type="A" → A, B, C

type="a" → a, b, c

type="I" → I, II, III

start="5" → start numbering at 5

Summary

<ul> creates unordered (bullet point) lists.

<ol> creates ordered (numbered/lettered) lists.

<li> defines each list item.

Lists can be nested and styled with attributes.

Lists make information easy to scan and improve readability on web pages.

Scroll to Top