From 61c30aa4e8564db5417d5a2b41923fe2c9c938d3 Mon Sep 17 00:00:00 2001 From: Prabhakar Yadav <114614952+prabhakaryadav2003@users.noreply.github.com> Date: Tue, 31 Dec 2024 02:48:54 +0530 Subject: [PATCH] fix(curriculum): Corrected errors in the challenge (#57840) --- .../6708396caa00e11b597b3365.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/curriculum/challenges/english/25-front-end-development/lecture-html-fundamentals/6708396caa00e11b597b3365.md b/curriculum/challenges/english/25-front-end-development/lecture-html-fundamentals/6708396caa00e11b597b3365.md index 3e836638ed9..73a3bc175dd 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-html-fundamentals/6708396caa00e11b597b3365.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-html-fundamentals/6708396caa00e11b597b3365.md @@ -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--