fix(curriculum): remove videos from working with links lecture block (#61544)

Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com>
Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
stimmer860
2025-07-31 04:53:22 -07:00
committed by GitHub
parent af3b7104fe
commit bc0b47047f
4 changed files with 8 additions and 34 deletions
@@ -1,19 +1,12 @@
---
id: 6716744f7245947a3dd60009
videoId: zf4bbN-hYOg
title: What Are the Different Target Attribute Types, and How Do They Work?
challengeType: 11
challengeType: 19
dashedName: what-are-the-different-target-attribute-types
---
# --description--
Watch the video or read the transcript and answer the questions below.
# --transcript--
What are the different `target` attribute types, and how do they work?
You may have seen the `target` attribute on anchor elements, or links. This important attribute tells the browser where to open the URL for the anchor element:
```html
@@ -30,7 +23,7 @@ The third value is `_parent`, which opens the link in the parent of the current
The fourth value is `_top`, which opens the link in the top-most browsing context - think "the parent of the parent". This is similar to `_parent`, but the link will always open in the full browser tab/window, even for nested embedded frames.
There is a fifth value, called `_unfencedTop`, which is currently used for the experimental FencedFrame API. At the time of this video, you probably won't have a reason to use this one yet.
There is a fifth value, called `_unfencedTop`, which is currently used for the experimental FencedFrame API. At the time of this lecture, you probably won't have a reason to use this one yet.
Selecting the right `target` value to control where your users end up is an important consideration when creating a website.
@@ -1,19 +1,12 @@
---
id: 671682dd88e461a8e2620f38
videoId: bxr4p5Ik4js
title: What Is the Difference Between Absolute and Relative Paths?
challengeType: 11
challengeType: 19
dashedName: what-is-the-difference-between-absolute-and-relative-paths
---
# --description--
Watch the video or read the transcript and answer the questions below.
# --transcript--
What is the different between absolute and relative paths?
A path is a string that specifies the location of a file or directory in a file system. In web development, paths let developers link to resources like images, stylesheets, scripts, and other web pages. There are absolute and relative paths - both are essential when specifying file locations within a file system. Let's look at the two so you can decide which one of them to use and when.
An absolute path is a complete link to a resource. It starts from the root directory, includes every other directory, and finally the filename and extension. The "root directory" refers to the top-level directory or folder in a hierarchy.
@@ -1,17 +1,12 @@
---
id: 6716830dbaf95da9564f2e3b
videoId: 5EfMkiLB9BA
title: What Is the Difference Between Slashes, a Single Dot, and Double Dot in Path Syntax?
challengeType: 11
challengeType: 19
dashedName: what-is-the-difference-between-slashes-a-single-dot-and-double-dot-in-path-syntax
---
# --description--
Watch the video or read the transcript and answer the questions below.
# --transcript--
You may have seen links like `/public/logo.png`, `./script.js`, or `../styles.css` before. But what do these special types of links mean? These are called file paths. There are three key syntaxes to know. First is the slash, which can be a backslash (`\`) or forward slash (`/`) depending on your operating system. The second is the single dot (`.`). And finally, we have the double dot (`..`).
The slash is known as the "path separator". It is used to indicate a break in the text between folder or file names. This is how your computer knows that `naomis-files/` points to a directory of that same name, while `naomis/files/` points to a `files` directory in the `naomis` directory.
@@ -1,19 +1,12 @@
---
id: 67168323932391a9ee0d3a9e
videoId: ztu_9h2ZJrA
title: What Are the Different Link States, and Why Are They Important?
challengeType: 11
challengeType: 19
dashedName: what-are-the-different-link-states
---
# --description--
Watch the video or read the transcript and answer the questions below.
# --transcript--
What are the different link states, and why are they important?
You may have seen a link on a web page become purple after you click it. This is because the state of the link has changed, so different styling gets applied. There are five different states a link can be in.
The first is the default state, which is `:link`. This state represents a link which the user has not visited, clicked, or interacted with yet. You can think of this state as providing the base styles for all links on your page. The other states build on top of it.
@@ -114,7 +107,7 @@ In what order should you style your links?
### --feedback--
Review the last part of the video, starting at the `1:32` mark for the answer.
Review the last part of the lecture for the answer.
---
@@ -122,7 +115,7 @@ Review the last part of the video, starting at the `1:32` mark for the answer.
### --feedback--
Review the last part of the video, starting at the `1:32` mark for the answer.
Review the last part of the lecture for the answer.
---
@@ -130,7 +123,7 @@ Review the last part of the video, starting at the `1:32` mark for the answer.
### --feedback--
Review the last part of the video, starting at the `1:32` mark for the answer.
Review the last part of the lecture for the answer.
---