notes from https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-by-building-a-cat-photo-app/ steps 34 onward

(and also https://www.freecodecamp.org/learn/2022/responsive-web-design/#learn-html-forms-by-building-a-registration-form)

<form action="/submit-form-here">
	<fieldset>
            <legend>Is your cat an indoor or outdoor cat?</legend>
            <label><input id="indoor" type="radio" name="indoor-outdoor" value="indoor"> Indoor</label>
            <label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label>
	</fieldset>
	<input type="text" placeholder="cat photo URL" name="catphotourl">
	<button type="submit">Submit</button>
</form>
<label for="1">Pick one</label>
<select id="1">
  <option>yellow</option>
  <option>red</option>
</select>

questions