Computer Science, asked by d0ct0r3v1lk5h1t1j, 6 hours ago

Write an html document to create a web page about " Corona virus safety rules" Include different types of lists and includes images also to describe the rule.​

Answers

Answered by dharmendrakumar10111
3

Answer:

this is your answer of this question

Attachments:
Answered by shilpa85475
0

There are two types of lists in HTML language. The ordered list consists of numbers while the unordered list consists of the bullets.

Explanation:

<!DOCTYPE html>

<html>

<body>

<h2>Corona Virus Symptoms</h2>

<ol>

 <li>Soar Throat</li>

 <li>Fewer</li>

 <li>Weakness in Body</li>

</ol>  

<h2>Corona virus precautions.</h2>

<ul>

 <li>Mask</li>

 <li>Sanitizers</li>

 <li>Hand Gloves</li>

</ul>  

<img src="D:/mydocuments/pictures/c1.jpg" alt="c1.jpg" width="42" height="42" style="border:5px solid black">

<img src="D:/mydocuments/pictures/c2.jpg" alt="c1.jpg" width="42" height="42" style="border:5px solid black">

<img src="D:/mydocuments/pictures/c3.jpg" alt="c1.jpg" width="42" height="42" style="border:5px solid black">

</body>

</html>

Similar questions