diff --git a/curriculum/challenges/english/blocks/review-html/671a883163d5ab5d47145880.md b/curriculum/challenges/english/blocks/review-html/671a883163d5ab5d47145880.md index 533943f1293..fcb4521d0e9 100644 --- a/curriculum/challenges/english/blocks/review-html/671a883163d5ab5d47145880.md +++ b/curriculum/challenges/english/blocks/review-html/671a883163d5ab5d47145880.md @@ -58,6 +58,7 @@ Review the concepts below to prepare for the upcoming prep exam. - **Absolute vs. relative paths**: Navigating directories. - **Path syntax**: Understanding `/`, `./`, `../` for file navigation. - **Link states**: Managing different link interactions (hover, active). +- **Internal links**: Linking to another section of the page by using `href="#id"` on an `a` element and giving the destination element the same `id`. ## Importance of Semantic HTML diff --git a/curriculum/challenges/english/blocks/review-semantic-html/671a83934b61f64cefe87a61.md b/curriculum/challenges/english/blocks/review-semantic-html/671a83934b61f64cefe87a61.md index d506a4bc237..e0fe97378a0 100644 --- a/curriculum/challenges/english/blocks/review-semantic-html/671a83934b61f64cefe87a61.md +++ b/curriculum/challenges/english/blocks/review-semantic-html/671a83934b61f64cefe87a61.md @@ -223,6 +223,17 @@ The `lang` attribute inside the open `i` tag is used to specify the language of
``` +- **Internal links**: used to link to another section of the page by using `href="#id"` on an `a` element and giving the destination element the same `id`. This is commonly used for skip links, table of contents, or long pages with multiple sections. + +```html +Go to About Section + +This is the about section of the page.
+