Skip to content
This repository was archived by the owner on Sep 25, 2019. It is now read-only.

Commit dd046d6

Browse files
gupta-ji6raisedadead
authored andcommitted
fix(challenge): Fixed the typo for automatically (#48)
1 parent e74192e commit dd046d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

challenges/01-responsive-web-design/basic-html-and-html5.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2139,7 +2139,7 @@
21392139
"description": [
21402140
"You can use <code>radio buttons</code> for questions where you want the user to only give you one answer out of multiple options.",
21412141
"Radio buttons are a type of <code>input</code>.",
2142-
"Each of your radio buttons can be nested within its own <code>label</code> element. By wrapping an <code>input</code> element inside of a <code>label</code> element it will autoatically associate the radio button input with the label element surrounding it.",
2142+
"Each of your radio buttons can be nested within its own <code>label</code> element. By wrapping an <code>input</code> element inside of a <code>label</code> element it will automatically associate the radio button input with the label element surrounding it.",
21432143
"All related radio buttons should have the same <code>name</code> attribute to create a radio button group. By creating a radio group, selecting any single radio button will automatically deselect the other buttons within the same group ensuring only one answer is provided by the user.",
21442144
"Here's an example of a radio button:",
21452145
"<blockquote>&#60;label&#62; <br>&nbsp;&nbsp;&#60;input type=\"radio\" name=\"indoor-outdoor\"&#62;Indoor <br>&#60;/label&#62;</blockquote>",
@@ -2287,7 +2287,7 @@
22872287
"description": [
22882288
"Forms commonly use <code>checkboxes</code> for questions that may have more than one answer.",
22892289
"Checkboxes are a type of <code>input</code>",
2290-
"Each of your checkboxes can be nested within its own <code>label</code> element. By wrapping an <code>input</code> element inside of a <code>label</code> element it will autoatically associate the checkbox input with the label element surrounding it.",
2290+
"Each of your checkboxes can be nested within its own <code>label</code> element. By wrapping an <code>input</code> element inside of a <code>label</code> element it will automatically associate the checkbox input with the label element surrounding it.",
22912291
"All related checkbox inputs should have the same <code>name</code> attribute.",
22922292
"It is considered best practice to explicitly define the relationship between a checkbox <code>input</code> and its corresponding <code>label</code> by setting the <code>for</code> attribute on the <code>label</code> element to match the <code>id</code> attribute of the associated <code>input</code> element.",
22932293
"Here's an example of a checkbox:",

0 commit comments

Comments
 (0)