From d7e3bfed816e09788178ce5ef13643163bf0ec66 Mon Sep 17 00:00:00 2001
From: ravenci <7629374-ravenci@users.noreply.gitlab.com>
Date: Sat, 14 Nov 2020 05:47:11 +0700
Subject: [PATCH] fix index.html css configuration

---
 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 e00d32d..2a057e0 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='styles.css'/>
+<link rel='stylesheet' href='/public/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 d7df1dc..108add4 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='styles.css'/>
+<link rel='stylesheet' href='/public/styles.css'/>
 <h1>Welcome to my page!</h1>
 <p><a href="index.html">Toggle Light mode</a></p>
 </head>
-- 
GitLab