2.3.2 Pet Names
- Due Aug 28, 2024 by 11:59pm
- Points 5
- Submitting a file upload
- File Types html
Add in the <br>
tags necessary to make each of the pet names listed appear on its own line.
STARTER CODE
<!DOCTYPE html>
<html>
<head>
<title>Pet Names</title>
</head>
<body>
<main>
<h1>Favorite Animal Names</h1>
<section>
<h2>Cats</h2>
<p>
Lillith
Jasper
Oliver
</p>
</section>
<hr>
<section>
<h2>Dogs</h2>
<p>
Captain Corgi Monster
Buster
Rover
</p>
</section>
</main>
</body>
</html>