-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
44 lines (43 loc) · 1.3 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
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
<meta
name="description"
content="Pluto is a minimal but functional 'web OS'
that aims to provide a desktop environment-like experience inside of a
website."
/>
<title>Pluto</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<style>
html,
body {
background-color: black;
}
</style>
<meta name="darkreader-lock" />
<link href="style.css" rel="stylesheet" type="text/css" />
<meta name="color-scheme" content="light dark" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
</head>
<body>
<script
defer
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/jshashes/1.0.8/hashes.min.js"
></script>
<script src="./assets/localforage.min.js"></script>
<script defer src="core.js"></script>
</body>
</html>