Lesson 8
+25 XP
HTML Basics

HTML Images

Learn how to add pictures and images to make your web pages beautiful

🖼️

Adding Images to Your Page

Images make web pages come alive! They can show photos, drawings, logos, and more.

Code Example:

📄 html
1
2
<!-- A simple image --><img src="puppy.jpg" alt="A cute puppy">

Images use the <img> tag. Notice it doesn't have a closing tag - it's a self-closing tag! The src attribute tells the browser which image file to display.