diff options
author | alinggo <60703725+alinggo@users.noreply.github.com> | 2022-02-17 17:33:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-17 17:33:39 +0800 |
commit | 1d327a59fba0506c86fd738549c11d53be26efbc (patch) | |
tree | 4c488aadd9baf2d6bc9c4c9684cadce88787eacd | |
parent | 8dfeab27c361cfc9db01de43799b2a61296512af (diff) | |
download | translated-content-1d327a59fba0506c86fd738549c11d53be26efbc.tar.gz translated-content-1d327a59fba0506c86fd738549c11d53be26efbc.tar.bz2 translated-content-1d327a59fba0506c86fd738549c11d53be26efbc.zip |
fix example code, correct code order (#4183)
-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> |