HTML Tutorial Series – Chapter 3: Links, Images & Multimedia
Introduction
So far, you’ve learned how to structure content using headings and paragraphs. But a webpage becomes truly powerful when it can connect, display visuals, and play media.
In this chapter, you’ll learn how to:
- Create clickable links
- Add images to your page
- Embed audio and video
- Work with multimedia elements
These features make your website interactive, engaging, and user-friendly.
HTML Links ( Tag)
Links are the backbone of the web. They allow users to navigate between pages and websites.
Basic Example:
Important Attributes:
href→ URL of the pagetarget="_blank"→ Opens link in new tabrel="noopener noreferrer"→ Improves security
Linking to Sections (Anchor Links):
Go to Section 1
Section 1
👉 Useful for long pages and navigation menus.
HTML Images (<img> Tag)
Images make your content more attractive and easier to understand.
Basic Example:
![Beautiful landscape]()
Important Attributes:
src→ Image pathalt→ Alternative text (important for SEO & accessibility)width&height→ Control image size
![Mountain view]()
Best Practice:
Always use the alt attribute — it helps search engines and screen readers understand your image.
Responsive Images (<picture> & <source>)
For better performance and responsiveness:
👉 Loads different images based on screen size.
Image Maps (<map> & <area>)
Allows clickable areas within an image.
👉 Useful for interactive graphics.
HTML Audio (<audio> Tag)
Add sound or music to your webpage.
Attributes:
controls→ Shows play/pause UIautoplay→ Plays automatically (use carefully)loop→ Repeats audio
HTML Video (<video> Tag)
Embed videos directly into your webpage.
Attributes:
controls→ Video controlsautoplay,muted,loopposter→ Thumbnail image
Media Supporting Tags
🔹 <track> (Subtitles)
🔹 <iframe> (Embed External Content)
👉 Used for embedding YouTube videos, maps, etc.
🔹 <embed>
🔹 <object> & <param>
Graphics Tags
🔹 <canvas> (Drawing with JavaScript)
🔹 <svg> (Vector Graphics)
Figure & Caption
Beautiful nature view
👉 Helps group images with descriptions (great for SEO).
Key Takeaways from Chapter 3
- Links connect pages and improve navigation.
- Images enhance user experience and SEO.
- Audio and video make content more engaging.
- Multimedia tags help create modern, interactive websites.
What’s Next?
In the next chapter, you’ll learn how to organize data using:
- Lists
- Tables
👉 Next: Chapter 4 – Lists & Tables


