From 2c8041f2e2f269094e9485b9ca846f8f56974a42 Mon Sep 17 00:00:00 2001 From: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com> Date: Mon, 9 Dec 2024 09:02:39 -0800 Subject: [PATCH] chore(curriculum): remove link lecture video (#57458) --- .../lecture-working-with-links/meta.json | 4 - .../67168343450957aa4335c56b.md | 121 ------------------ 2 files changed, 125 deletions(-) delete mode 100644 curriculum/challenges/english/25-front-end-development/lecture-working-with-links/67168343450957aa4335c56b.md diff --git a/curriculum/challenges/_meta/lecture-working-with-links/meta.json b/curriculum/challenges/_meta/lecture-working-with-links/meta.json index 474d7fe691a..81436421054 100644 --- a/curriculum/challenges/_meta/lecture-working-with-links/meta.json +++ b/curriculum/challenges/_meta/lecture-working-with-links/meta.json @@ -21,10 +21,6 @@ { "id": "67168323932391a9ee0d3a9e", "title": "What Are the Different Link States, and Why Are They Important?" - }, - { - "id": "67168343450957aa4335c56b", - "title": "What Is the Difference Between Inline and Block-Level Links?" } ], "helpCategory": "HTML-CSS" diff --git a/curriculum/challenges/english/25-front-end-development/lecture-working-with-links/67168343450957aa4335c56b.md b/curriculum/challenges/english/25-front-end-development/lecture-working-with-links/67168343450957aa4335c56b.md deleted file mode 100644 index b92848e3c4c..00000000000 --- a/curriculum/challenges/english/25-front-end-development/lecture-working-with-links/67168343450957aa4335c56b.md +++ /dev/null @@ -1,121 +0,0 @@ ---- -id: 67168343450957aa4335c56b -videoId: nVAaxZ34khk -title: What Is the Difference Between Inline and Block-Level Links? -challengeType: 11 -dashedName: what-is-the-difference-between-inline-and-block-level-links ---- - -# --description-- - -Watch the video and answer the questions below. - -# --questions-- - -## --text-- - -What is the default behavior of an `a` element? - -## --answers-- - -It displays on the same line. - ---- - -It displays on a new line. - -### --feedback-- - -`a` elements are inline elements. - ---- - -It displays on a new page. - -### --feedback-- - -`a` elements are inline elements. - ---- - -It displays before everything else. - -### --feedback-- - -`a` elements are inline elements. - -## --video-solution-- - -1 - -## --text-- - -What is the default behavior of a `p` element? - -## --answers-- - -It displays on the same line. - -### --feedback-- - -`p` elements are block elements. - ---- - -It displays on a new line. - ---- - -It displays on a new page. - -### --feedback-- - -`p` elements are block elements. - ---- - -It displays before everything else. - -### --feedback-- - -`p` elements are block elements. - -## --video-solution-- - -2 - -## --text-- - -How would you make a link display on a new line? - -## --answers-- - -The `a` element will display on a new line automatically. - -### --feedback-- - -You can turn a `p` element into a link by nesting it in the `a` element. - ---- - -Nest a block element, such as `p`, in the `a` element. - ---- - -You can't; links are only able to be inline. - -### --feedback-- - -You can turn a `p` element into a link by nesting it in the `a` element. - ---- - -Ask it really nicely. - -### --feedback-- - -You can turn a `p` element into a link by nesting it in the `a` element. - -## --video-solution-- - -2