From 466bb4251933b68be2a3b8412a02fd66a93ce215 Mon Sep 17 00:00:00 2001 From: ravenci <7629374-ravenci@users.noreply.gitlab.com> Date: Sat, 14 Nov 2020 06:10:59 +0700 Subject: [PATCH] fix styling --- public/index.html | 2 +- public/indexdark.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 2a057e0..4e41e69 100644 --- a/public/index.html +++ b/public/index.html @@ -3,7 +3,7 @@ <head> <meta charset= "utf-8"> <title>Learn Frontend WebDev</title> -<link rel='stylesheet' href='/public/styles.css'/> +<link rel='stylesheet' href="styles.css"/> <h1>Welcome to my page!</h1> <p><a href="indexdark.html">Toggle dark mode</a></p> </head> diff --git a/public/indexdark.html b/public/indexdark.html index 108add4..c5f4adf 100644 --- a/public/indexdark.html +++ b/public/indexdark.html @@ -3,7 +3,7 @@ <head> <meta charset= "utf-8"> <title>Learn Frontend WebDev</title> -<link rel='stylesheet' href='/public/styles.css'/> +<link rel='stylesheet' href="stylesdark.css"/> <h1>Welcome to my page!</h1> <p><a href="index.html">Toggle Light mode</a></p> </head> -- GitLab