From 523db0910ceae05c23ba4473b11cbaac47b8a941 Mon Sep 17 00:00:00 2001 From: Conrad Zelck <git@simpel.cc> Date: Sat, 24 Feb 2024 22:20:48 +0100 Subject: [PATCH] fix index: remove defer attribute for style link Attribute defer not allowed on element link at this point. Signed-off-by: Conrad Zelck <git@simpel.cc> --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 43e312a..73f6276 100644 --- a/index.php +++ b/index.php @@ -5,7 +5,7 @@ <!-- <meta charset="utf-8"> --> <!-- <title>FreqBuddy</title> --> <script src="script.min.js" defer></script> - <link rel="stylesheet" href="style.min.css" defer> + <link rel="stylesheet" href="style.min.css"> </head> <body> <header> -- GitLab