Computer Science, asked by ahemant885, 7 months ago

Give html code for the following output:
definition list : Tea -hot drink. Juice.
-Ice drink​

Answers

Answered by prashantrohilla32
2

Answer:

<html>

<body>

<ul style="list-style-type: none;">

<li>Tea-hot drink</li>

<li>Juice-ice drink</li>

</ul>

</body>

</html>

Explanation:

Answered by bathinivishnupriya08
2

Answer:

<!DOCTYPEhtml>

<html>

<body>

<h2>Tea-hot drink</h2>

<h3>juice-cooldrink</h3>

</body>

</html>

Explanation:

Similar questions