Lesson 3

Images, Links & Lists

🖼 Images

The <img> tag is used to display images on a webpage.

<img src="cat.jpg" alt="A Cat">

🔗 Links

The <a> tag creates links to other pages or websites.

<a href="https://www.google.com">Visit Google</a>

📋 Lists

HTML supports ordered and unordered lists.

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

<ol>
    <li>Wake Up</li>
    <li>Study</li>
    <li>Practice Coding</li>
</ol>

🎯 Practice Task

Create a webpage that contains:

Practice Now 🚀