diff options
Diffstat (limited to 'files/zh-cn')
-rw-r--r-- | files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html b/files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html index 607792bb45..57545b2c67 100644 --- a/files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html +++ b/files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html @@ -101,12 +101,12 @@ original_slug: Learn/HTML/Forms/How_to_structure_an_HTML_form <pre class="brush:html;"><form> <p> + <input type="checkbox" id="taste_1" name="taste_cherry" value="1"> <label for="taste_1">I like cherry</label> - <input type="checkbox" id="taste_1" name="taste_cherry" value="1"> </p> <p> + <input type="checkbox" id="taste_2" name="taste_banana" value="2"> <label for="taste_2">I like banana</label> - <input type="checkbox" id="taste_2" name="taste_banana" value="2"> </p> </form></pre> |