diff --git a/guide/english/certifications/responsive-web-design/basic-html-and-html5/use-the-value-attribute-with-radio-buttons-and-checkboxes/index.md b/guide/english/certifications/responsive-web-design/basic-html-and-html5/use-the-value-attribute-with-radio-buttons-and-checkboxes/index.md new file mode 100644 index 0000000000..d7b19f39e8 --- /dev/null +++ b/guide/english/certifications/responsive-web-design/basic-html-and-html5/use-the-value-attribute-with-radio-buttons-and-checkboxes/index.md @@ -0,0 +1,22 @@ +--- +title: Use the value attribute with Radio Buttons and Checkboxes +--- +## Use the value attribute with Radio Buttons and Checkboxes +To pass the challenge, add the `value` attribute to the `input` elements of type `checkbox` and `radio`. Use the `input` label text, in lowercase, as the value for the attribute. The `value` attribute will make sure the choices are identifiable when the form is submitted. + +Example form with value attributes: +```html +
+``` \ No newline at end of file