-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.12 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
<!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">
<link rel="shortcut icon" href="./assets/img/kitsume-app-logo-concept-2.svg" type="image/xml+svg">
<title>Kitsume</title>
<meta name="description" content="The best anime streaming platform on Android.">
<link rel="stylesheet" href="./assets/css/styles.css">
</head>
<body>
<div class="cover" id="cover"></div>
<div class="container">
<div class="before"></div>
<div class="after"></div>
<div class="kitsume-logo">
<img src="assets/img/kitsume-logo.svg" alt="kitsume-icon">
</div>
<h3 class="japanese_text">KITSUME</h3>
<p>The best app to watch anime on Android</p>
<p class="underline">
<a href="https://github.com/Kitsume-Labs" target="_blank" rel="noopener noreferrer">
stay tuned
</a>
</p>
</div>
<script>
const COVER = document.getElementById("cover")
window.addEventListener("DOMContentLoaded", () => {
setTimeout(() => {
COVER.classList.add("hidden")
}, 400)
})
</script>
</body>
</html>