<html> <body> <main> <h1>CatPhotoApp</h1> <section> <h2>Cat Photos</h2> <p>Everyone loves <a href="https://cdn.freecodecamp.or

CatPhotoApp

Cat Photos

Everyone loves cute cats online!

See more cat photos in our gallery.

A cute orange cat lying on its back.

Cat Lists

Things cats love:

  • catnip
  • laser pointers
  • lasagna
A slice of lasagna on a plate. Cats love lasagna.

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
Five cats looking around a field. Cats hate other cats.

Cat Form

      <fieldset>
        <legend>Is your cat an indoor or outdoor cat?</legend>
        <label> <input id="indoor" type="radio" name="indoor-outdoor"value="indoor" checked > Indoor</label>
        <label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"  Outdoor</label>
      </fieldset>
      <fieldset>
        <legend>What's your cat's personality?</legend>
        <input id="loving" type="checkbox" name="personality" value="loving"> <label for="loving">Loving</label>
        <input id="lazy" type="checkbox" name="personality" value="lazy"> <label for="lazy">Lazy</label>
        <input id="energetic" type="checkbox" name="personality" value="energetic"> <label for="energetic"> Energetic</label>
      </fieldset>
      <input type="text" name="catphotourl" placeholder="cat photo URL" required>
      <button type="submit">Submit</button>
    </form>
  </section>
</main>

Hi. Can you please link to the url of the step you are on. Please also explain the issue you are having .

Have you tried to submit the code and follow the hint?