This page shows an ordered list of morning routine steps. The list is numbered automatically by the browser.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Morning Routine</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 1rem;
background-color: #f9f9f9;
color: #333;
}
ol {
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;
}
</style>
</head>
<body>
<main>
<h1>My Morning Routine</h1>
<ol>
<li>Wake up</li>
<li>Brush teeth</li>
<li>Eat breakfast</li>
<li>Get dressed</li>
<li>Leave for work</li>
</ol>
</main>
</body>
</html>