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

Links are essential in web design because they connect different pages and resources, allowing users to navigate the web easily. In HTML, links are created using the <a> (anchor) tag.

1. Basic Link Structure

 
<a href="https://example.com">Visit Example</a>

href attribute → specifies the URL.

The text between <a> and </a> is clickable.

2. External Links

Point to another website outside your own domain.

Example:

 
<a href="https://www.google.com" target="_blank">Go to Google</a>

target="_blank" → opens link in a new tab.

3. Internal Links

Connect pages within the same website.

Example:

 
<a href="about.html">About Us</a>
<a href="#section1">Go to Section 1</a>

Can also link to specific sections of a page using an id.

4. Navigation Menus

Multiple links can be grouped in a <nav> element.

Example:

 
<nav>
<a href="index.html">Home</a> |
<a href="about.html">About</a> |
<a href="contact.html">Contact</a>
</nav>

Summary

Links (<a href="">) allow navigation between pages and resources.

External links point to other websites; use target="_blank" to open in a new tab.

Internal links connect pages within the same site or jump to sections with id.

The <nav> tag is used to group navigation menus.

Links create the pathways that connect webpages into a complete website.

Scroll to Top