From 6cba851f5b0697ed91a21af894e849b58b4da6d9 Mon Sep 17 00:00:00 2001 From: Fazil Altinel Date: Sun, 2 Jan 2022 11:55:44 +0000 Subject: [PATCH] Add link color changes on hover --- style.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index d7753e2..0256e47 100644 --- a/style.css +++ b/style.css @@ -10,10 +10,18 @@ body { margin-top:100px; font-size:14px; } -a { +a:link { color: #5fc; text-decoration: none; } +a:visited { + color: #5fc; + text-decoration: none; +} +a:hover { + color: #0bc; + text-decoration: none; +} #a { color: #0f0; }