Learn HTML - Input type radio

Опубликовано: 26 Февраль 2023
на канале: Konstantyn's coding
270
16

More information on input type radio: https://developer.mozilla.org/en-US/d...

At today's video we will look at input of type radio button. Input type radio is a type of input field that allows users to select only one option from a list of options. It's like a multiple-choice question where you can only choose one answer.

In this example, we have three radio buttons with the same name attribute "fruit", which means the user can only choose one option from the three. The value attribute is used to identify which option the user has selected. When the user submits the form, the value of the selected radio button will be sent to the server. And what is important - only one value! That's the whole point of radio button input.