CatPhotoApp
Cat Photos
Everyone loves cute cats online!
See more cat photos in our gallery.

Cat Lists
Things cats love:
- catnip
- laser pointers
- lasagna

Top 3 things cats hate:
- flea treatment
- thunder
- 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>