Alright, nerds: if you could learn the entire story around one HTML element, what would it be?

@Wilto

input type=date
or datalist

the element i always thought was weird <input type=“radio”>
because input falls back to a text box.

Instead, why not

<label for=“ask-accept”>Do You Accept?</label>
<radio id=“ask-accept” name=“accept”>
<option
value=yes>Yes</option>
<option
value=no>No</option>
</radio>