From de5a2c5e1b7558d6169186492c08575e9bed6eb9 Mon Sep 17 00:00:00 2001 From: hassannaqvi-coder Date: Sat, 24 Aug 2024 15:23:20 +0500 Subject: [PATCH] Fix missing semicolon in a:visited CSS rule --- Video 17/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Video 17/index.html b/Video 17/index.html index 4331de17..fcc242ac 100644 --- a/Video 17/index.html +++ b/Video 17/index.html @@ -12,7 +12,7 @@ /* Class Selector */ .red{ - background-color: red; + background-color: blue; } /* Id Selector */ @@ -39,9 +39,9 @@ } /* Pseudo Selector */ - a:visited{ - color: yellow - } + a:visited { + color: yellow; /* Added missing semicolon */ +} a:link { color: green; @@ -81,4 +81,4 @@ Go to Google Go to Facebook - \ No newline at end of file +