This webpage shows a simple unordered list of fruits with bullet points. The list uses semantic HTML and includes an ARIA label for accessibility. The style makes the list easy to read and visually pleasant.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unordered List Example</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 1rem;
background-color: #f9f9f9;
color: #333;
}
ul {
background-color: #fff;
padding: 1rem 2rem;
border-radius: 0.5rem;
max-width: 300px;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
li {
margin-bottom: 0.5rem;
line-height: 1.4;
}
</style>
</head>
<body>
<h1>My Favorite Fruits</h1>
<ul aria-label="List of favorite fruits">
<li>Apple</li>
<li>Banana</li>
<li>Cherry</li>
<li>Date</li>
</ul>
</body>
</html>