programming-examples/html/Basics/Creating an ordered list.html
2019-11-18 14:44:36 +01:00

15 lines
363 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<meta charset="UTF-8">
<title>Example of HTML Ordered List</title>
</head>
<body>
<h1>HTML Ordered List</h1>
<ol>
<li>Mix ingredients</li>
<li>Bake in oven for an hour</li>
<li>Allow to stand for ten minutes</li>
</ol>
</body>
</html>