Create a Simple Unordered List in HTML
📖 Scenario: You want to make a simple webpage that shows a list of your favorite fruits. This list should be easy to read and clearly separated.
🎯 Goal: Build a basic HTML page that includes an unordered list with three fruit names.
📋 What You'll Learn
Use semantic HTML5 structure with
<html>, <head>, and <body> tagsInclude a
<title> in the headCreate an unordered list using
<ul> with exactly three list items <li>Each list item must contain one fruit name: Apple, Banana, Cherry
💡 Why This Matters
🌍 Real World
Unordered lists are used on websites to show groups of items like features, steps, or menus in a clear, easy-to-read way.
💼 Career
Knowing how to create and structure lists is a basic skill for web developers to organize content effectively and improve user experience.
Progress0 / 4 steps