Write the HTML to create the ordered list for below contents Xylophone, Yak, Zebra, Nokia, Samsung.
Answers
Answered by
3
Hi
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ordered List</title>
</head>
<body>
<ol>
<li>Xylophone</li>
<li>Yak</li>
<li>Zebra</li>
<li>Nokia</li>
<li>Samsung</li>
</ol>
</body>
</html>
Similar questions