Computer Science, asked by yannamharshitha2, 1 year ago

Write the HTML to create the ordered list for below contents Xylophone, Yak, Zebra, Nokia, Samsung.

Answers

Answered by Anonymous
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