Hi, I am taking a class on HTML and need help with fixing the HTML code below and adding the below features. Thank you for your help.
Please do the following:
-------------------------------------------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equip="Content-Type" content="text/html;
charset=uff-8">
<meta http-equip="Content-Style-Type"
content="text/css">
<title>Animal Site</title>
<meta name="Generator" content="Cocoa HTML Writer">
<meta name="CocoaVersion" content="1671.5">
<style type="text/css">
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 14.0px; font:
12.0px Helvetica; color: #000000; -webkit-text-stroke: #000000;
min-height: 12.0px}
span.s1 {font-kerning: none}
</style>
</head>
<body>
<p class="p1"><span
class="s1"></span><br></p>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equip="Content-Type" content="text/html;
charset=uff-8">
<meta http-equip="Content-Style-Type"
content="text/css">
<title>Animal Site</title>
<meta name="Generator" content="Cocoa HTML Writer">
<meta name="CocoaVersion" content="1671.5">
<style type="text/css">
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 14.0px; font:
12.0px Helvetica; color: #000000; -webkit-text-stroke: #000000;
min-height: 12.0px}
span.s1 {font-kerning: none}
ul.dog{
font-style: italic;
}
</style>
</head>
<body>
<p class="p1"><span class="s1">
</span><br></p>
<h3>Dog</h3>
<ul class="dog">
<li>Poodle</li>
<li>Bulldog</li>
</ul>
<h3>Crocodile</h3>
<ol type="1" class="crocodile">
<a href =
"https://en.wikipedia.org/wiki/Crocodile"><li>Gharial</li></a>
<a href =
"https://en.wikipedia.org/wiki/Crocodile"><li>American
Aviator</li></a>
</ol>
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Large_crocodile_in_park.jpg/220px-Large_crocodile_in_park.jpg"
>
</body>
</html>
Output:

Hi, I am taking a class on HTML and need help with fixing the HTML code...