-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (51 loc) · 1.55 KB
/
index.html
File metadata and controls
54 lines (51 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images/favicon-32x32.png"
/>
<title>Classy Derek | Derek. For Discord.</title>
<script>
const vh = window.innerHeight * 0.01;
document.documentElement.style.setProperty("--vh", `${vh}px`);
</script>
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,400;1,900&family=Source+Sans+Pro:wght@300;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/css/styles.css" />
</head>
<body>
<div id="wrapper">
<div id="welcome">
<p>Welcome!</p>
<p>Everything is fine.</p>
</div>
<div id="title-container">
<img src="./assets/images/derek.svg" alt="Derek's face" class="derek" />
<div class="title">
<h1>Classy Derek</h1>
<h2>Derek. For Discord.</h2>
</div>
</div>
<div id="what-he-does">
<h3>What Derek does:</h3>
<ul>
<li>Understands you;</li>
<li>Adds captions to images.</li>
</ul>
<p>
Derek is still under development, but you can keep up with him
<a href="https://github.com/tuliosj/classy-derek">here</a>.
</p>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="./assets/js/scripts.js"></script>
</body>
</html>