From 1d327a59fba0506c86fd738549c11d53be26efbc Mon Sep 17 00:00:00 2001 From: alinggo <60703725+alinggo@users.noreply.github.com> Date: Thu, 17 Feb 2022 17:33:39 +0800 Subject: fix example code, correct code order (#4183) --- files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'files') 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
<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>
-- cgit v1.2.3-54-g00ecf