freeCodeCamp/guide/spanish/html/tutorials/basic-html/radio-button/index.md

24 lines
596 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Radio Button
localeTitle: Boton de radio
---
# Boton de radio
```html
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
<input type="radio" name="gender" value="male"> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
```
Los botones de radio se pueden usar para seleccionar una sola opción de entre varias opciones. No se le permite elegir 2 o más botones de radio en el mismo campo de selección.