diff --git a/curriculum/challenges/english/25-front-end-development/review-html-tables-and-forms/671a872c17382a582e455c4c.md b/curriculum/challenges/english/25-front-end-development/review-html-tables-and-forms/671a872c17382a582e455c4c.md index eb55a336b05..d0c3e2b52af 100644 --- a/curriculum/challenges/english/25-front-end-development/review-html-tables-and-forms/671a872c17382a582e455c4c.md +++ b/curriculum/challenges/english/25-front-end-development/review-html-tables-and-forms/671a872c17382a582e455c4c.md @@ -24,8 +24,8 @@ dashedName: review-html-tables-and-forms - **`placeholder` attribute**: used to show a hint to the user to show them what to enter in the input field. - **`value` attribute**: used to specify the value of the input. If the input has a `button` type, the `value` attribute can be used to set the button text. - **`size` attribute**: used to define the number of characters that should be visible as the user types into the input. -- **`min` attribute**: can be used input types such as `number` to specify the minimum value allowed in the input field. -- **`max` attribute**: can be used input types such as `number` to specify the maximum value allowed in the input field. +- **`min` attribute**: can be used with input types such as `number` to specify the minimum value allowed in the input field. +- **`max` attribute**: can be used with input types such as `number` to specify the maximum value allowed in the input field. - **`minlength` attribute**: used to specify the minimum number of characters required in an input field. - **`maxlength` attribute**: used to specify the maximum number of characters allowed in an input field. - **`required` attribute**: used to specify that an input field must be filled out before submitting the form. diff --git a/curriculum/challenges/english/25-front-end-development/review-html/671a883163d5ab5d47145880.md b/curriculum/challenges/english/25-front-end-development/review-html/671a883163d5ab5d47145880.md index 275a92622b1..d155d971488 100644 --- a/curriculum/challenges/english/25-front-end-development/review-html/671a883163d5ab5d47145880.md +++ b/curriculum/challenges/english/25-front-end-development/review-html/671a883163d5ab5d47145880.md @@ -94,18 +94,6 @@ Review the concepts below to prepare for the upcoming prep exam. ## HTML Form Elements and Attributes -### Tables - -- **HTML tables (``)**: Used for tabular data. -- **Table components**: - - ``: Groups the table header content. - - ``: Groups the main body of table data. - - ``: Groups footer information. - - ``: Defines table rows. - - `
`: Defines header cells. - - ``: Defines standard data cells. -- **Use `
`** to provide a table description. - ### Forms - **`form` element**: Used to create an HTML form for user input. @@ -127,8 +115,8 @@ Review the concepts below to prepare for the upcoming prep exam. - **`placeholder` attribute**: used to show a hint to the user to show them what to enter in the input field. - **`value` attribute**: used to specify the value of the input. If the input has a `button` type, the `value` attribute can be used to set the button text. - **`size` attribute**: used to define the number of characters that should be visible as the user types into the input. -- **`min` attribute**: can be used input types such as `number` to specify the minimum value allowed in the input field. -- **`max` attribute**: can be used input types such as `number` to specify the maximum value allowed in the input field. +- **`min` attribute**: can be used with input types such as `number` to specify the minimum value allowed in the input field. +- **`max` attribute**: can be used with input types such as `number` to specify the maximum value allowed in the input field. - **`minlength` attribute**: used to specify the minimum number of characters required in an input field. - **`maxlength` attribute**: used to specify the maximum number of characters allowed in an input field. - **`required` attribute**: used to specify that an input field must be filled out before submitting the form.