Tell us what’s happening:
Describe your issue in detail here.
Your code so far
<!-- User Editable Region -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CatPhotoApp</title>
</head>
<body>
<h1>CatPhotoApp</h1>
<section>
<h2>Cat Photos</h2>
<img src="https://bit.ly/fcc-relaxing-cat" alt="Relaxing Cat">
<h2>Cat List</h2>
<ul>
<li>catnip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<img src="https://th.bing.com/th/id/OIP.hmtgSZq6AOqGxggKjEON6wAAAA?rs=1&pid=ImgDetMain" alt="Lasagna Image">
<!-- TODO: Add link to cat photos -->
<p>Cats love lasagna. See more cat photos in our <a href="#catPhotos">gallery</a>.</p>
<h2>Top 3 things cats hate:</h2>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<img src="https://bit.ly/fcc-running-cats" alt="Running Cats">
<p>Cats hate other cats.</p>
</section>
<section id="catPhotos">
<h2>Cat Form</h2>
<form action="#" method="post" id="catForm">
<label for="indoorOutdoor">Is your cat an indoor or outdoor cat?</label>
<div>
<input type="radio" id="indoor" name="indoorOutdoor" value="indoor">
<label for="indoor">Indoor</label>
</div>
<div>
<input type="radio" id="outdoor" name="indoorOutdoor" value="outdoor">
<label for="outdoor">Outdoor</label>
</div>
<label for="personality">What's your cat's personality?</label>
<select id="personality" name="personality">
<option value="loving">Loving</option>
<option value="lazy">Lazy</option>
<option value="energetic">Energetic</option>
</select>
<label for="catPhotoUrl">Cat Photo URL</label>
<input type="text" id="catPhotoUrl" name="catPhotoUrl">
<input type="submit" value="Submit">
</form>
</section>
</body>
</html>
<!-- User Editable Region -->
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
Challenge Information:
Learn HTML by Building a Cat Photo App - Step 4