-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (53 loc) · 1.81 KB
/
index.html
File metadata and controls
64 lines (53 loc) · 1.81 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<script>
const r = document.documentElement;
['accent', 'main', 'background', 'navbar'].forEach(k => {
const c = localStorage.getItem(`${k}Color`);
if (c) r.style.setProperty(`--${k}-color`, c);
});
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="favicon.png" />
<title>Deep</title>
<script src="scripts/accent.js"></script>
</head>
<body>
<div class="fade-container">
<!-- Discord button -->
<a href="https://discord.gg/SSMcX5fTmT" target="_blank" class="discord-button">
<img src="https://friconix.com/png/fi-snluxx-discord-alt.png" alt="Discord" />
</a>
<img src="favicon.png" alt="Logo" class="center-image">
<p class="footer">hi</p>
</div>
<p class="text text-color" id="para">
This is <span id="element" class="text2"></span>
</p>
<!-- Navbar!!! -->
<div class="sidebar">
<a href="index.html" class="sb-icon icon-home"></a>
<a href="games.html" class="sb-icon icon-game"></a>
<a href="settings.html" class="sb-icon icon-settings"></a>
</div>
<!-- Load library from CDN -->
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
console.log("Using custom Typed config");
var typed = new Typed("#element", {
strings: [" deep.", " private.", " fun.", " a new way to game.", " your favorite site.", " modern."],
typeSpeed: 63,
backSpeed: 50,
backDelay: 1200,
loop: true,
contentType: "html",
});
});
</script>
<script src="scripts/colors.js"></script>
</body>
</html>