Computer Science, asked by rachit0712, 4 months ago

Make a HTML Program For Flavours Of Tea(Black and Green)..
[Using order or unorder list]​

Answers

Answered by herilchahwala
1

<html>

<body>

<h2>A Nested List</h2>

<ul>

 <li>Coffee</li>

 <li>Tea

   <ul>

   <li>Black tea</li>

   <li>Green tea

     <ul>

     <li>China</li>

     <li>Africa</li>

     </ul>

   </li>

   </ul>

 </li>

 <li>Milk</li>

</ul>

</body>

</html>

PLEASE MARK ME AS BRAINLIEST !!

Answered by seemamishra610
2

Answer:

<html>

<head>

<title> Programs in HTML </title>

</head>

<h1> Flavours of Tea </h1>

<ol>

<li> Black Tea </li>

<li> Green Tea </li>

</ol>

</body>

</head>

Similar questions