fix(curriculum): Corrected errors in the challenge (#57840)

This commit is contained in:
Prabhakar Yadav
2024-12-31 02:48:54 +05:30
committed by GitHub
parent 4069cdcf21
commit 61c30aa4e8

View File

@@ -50,7 +50,7 @@ Refer back to the beginning of the video, where open graph properties were intro
## --text--
What does the `name="og:title"` do in the `meta` element?
What does the `property="og:title"` do in the `meta` element?
## --answers--
@@ -58,7 +58,7 @@ It automatically adjusts the font size and style of the webpage title based on u
### --feedback--
Pay close attention to the value of the name attribute here because it heavily implies what that value does.
Pay close attention to the value of the `property` attribute here because it heavily implies what that value does.
---
@@ -66,7 +66,7 @@ It directs the browser to display a specific emoticon or emoji as the title of t
### --feedback--
Pay close attention to the value of the name attribute here because it heavily implies what that value does.
Pay close attention to the value of the `property` attribute here because it heavily implies what that value does.
---
@@ -74,7 +74,7 @@ It causes the webpage to play a specific audio file when the title is displayed
### --feedback--
Pay close attention to the value of the name attribute here because it heavily implies what that value does.
Pay close attention to the value of the `property` attribute here because it heavily implies what that value does.
---
@@ -94,7 +94,7 @@ It selects the page's default font style.
### --feedback--
Pay close attention to the value of the `name` attribute here because it heavily implies what that value does.
Pay close attention to the value of the `property` attribute here because it heavily implies what that value does.
---
@@ -102,7 +102,7 @@ It triggers a pop-up advertisement when the webpage is loaded.
### --feedback--
Pay close attention to the value of the `name` attribute here because it heavily implies what that value does.
Pay close attention to the value of the `property` attribute here because it heavily implies what that value does.
---
@@ -114,7 +114,7 @@ It changes the webpage's background color based on the user's time zone.
### --feedback--
Pay close attention to the value of the `name` attribute here because it heavily implies what that value does.
Pay close attention to the value of the `property` attribute here because it heavily implies what that value does.
## --video-solution--