-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdark-page.html
26 lines (25 loc) · 1.21 KB
/
dark-page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Magazine Ghost Blog</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="./css/base.css">
<link rel="stylesheet" href="./css/light-page.css">
<link rel="stylesheet" href="./css/grid.css">
<link rel="stylesheet" href="./css/responsive.css">
<link rel="stylesheet" href="./fonts/fontawesome-free-6.1.2/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&family=Inconsolata:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/dark-page.css">
</head>
<body class="dark">
<script>
document.querySelector(".dark").innerHTML = localStorage.getItem("lightApp");
const imgLogo = './img/genki_white.svg';
document.querySelector(".navbar__logo-icon").src = imgLogo;
</script>
</body>
</html>