diff --git a/src/site/content/en/learn/html/metadata/index.md b/src/site/content/en/learn/html/metadata/index.md index 7d4525016af..2632f9d1b77 100644 --- a/src/site/content/en/learn/html/metadata/index.md +++ b/src/site/content/en/learn/html/metadata/index.md @@ -213,7 +213,7 @@ Your HTML now looks something like this: ``` -It's pretty long, but it's done. It would have been much longer, but you've summed up all the icons, short name, etc. in a [manifest file](/add-manifest/), enabling you to omit many `` and `` tags, +It's pretty long, but it's done. Now that your `` is mostly complete, you can dive into some [semantic HTML](/learn/html/semantic-html/). diff --git a/src/site/content/en/learn/html/tables/index.md b/src/site/content/en/learn/html/tables/index.md index 418f466cdf4..61fd306dfc7 100644 --- a/src/site/content/en/learn/html/tables/index.md +++ b/src/site/content/en/learn/html/tables/index.md @@ -159,7 +159,7 @@ include the `headers` attribute with a space-separated list of the associated he the scope of the headers with the `scope` attribute. To be even clearer, we added the `headers` attribute to each cell. The `headers` attributes were possibly not necessary in such a simple use case, but they are important to have in your toolbelt -your tables grow in complexity. Tables with complex structures, such as tables where headers or cells are merged or with more +as your tables grow in complexity. Tables with complex structures, such as tables where headers or cells are merged or with more than two levels of column or row headers, require explicit identification of associated header cells. In such complex tables, explicitly associate each data cell with each corresponding header cell with a list of space-separated `id` values of all the associated headers as the value of the `headers` attribute.