-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1 KB
/
index.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
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<link rel="apple-touch-icon" sizes="152x152" href="images/favicon-dark/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-dark/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-dark/favicon-16x16.png">
<link rel="manifest" href="images/favicon-dark/site.webmanifest">
<link rel="mask-icon" href="images/favicon-dark/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<style type="text/css">
body {
background-color: #F2F2F2;
color: #333;
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #333;
color: white;
}
}
</style>
<script type="text/javascript" src="js/fmode.min.js"></script>
<title>Test</title>
</head>
<body>
<h1>This website is awesome</h1>
</body>
</html>