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

Adding multimedia makes a web page more engaging and interactive. HTML provides simple tags for embedding images, audio, and video.

1. Images (<img>)

Displays pictures on a webpage.

 
<img src="image.jpg" alt="Description of image" width="400" height="300">

src → file path or URL of the image.

alt → alternative text (for accessibility & SEO).

width / height → optional size control.

2. Audio (<audio>)

Embeds sound/music.

 
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>

controls → adds play/pause buttons.

Multiple <source> elements can be used for compatibility.

3. Video (<video>)

Embeds videos directly.

 
<video controls width="600">
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>

controls → adds play/pause, volume, fullscreen.

autoplay, loop, and muted are optional attributes.

4. Embedding from Platforms (YouTube, etc.)

Use <iframe> to embed external videos.

 
<iframe width="560" height="315"
src="https://www.youtube.com/embed/xyz123"
frameborder="0" allowfullscreen>
</iframe>

Summary

<img> displays images with src and alt.

<audio> and <video> allow adding multimedia with controls for playback.

<iframe> is used for embedding external content like YouTube videos.

Multimedia makes websites interactive, engaging, and user-friendly.

A modern website is not just text, it comes alive with images, sound, and video.

Scroll to Top