-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (63 loc) · 2.84 KB
/
index.html
File metadata and controls
78 lines (63 loc) · 2.84 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Enigmatic Comma</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#141414">
<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=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
<meta name="msapplication-TileColor" content="#141414">
<meta name="theme-color" content="#141414">
<meta name="darkreader-lock">
</head>
<body>
<div class="logo-container">
<div class="video-mask">
<img
src="https://raw.githubusercontent.com/Chrisdbhr/chrisdbhr.github.io/refs/heads/master/public/assets/images/resultarias/resultarias.gif"
alt="Logo Background Animation">
</div>
<h1>Enigmatic Comma</h1>
</div>
<div class="games-menu">
<a href="https://s.team/a/2230030" target="_blank" class="game-link">
<span class="cursor">▶</span> Resultarias
</a>
<a href="https://chrisjogos.com/project/what-the-dog-remembers" target="_blank" class="game-link">
<span class="cursor">▶</span> What The Dog Remembers
</a>
</div>
<nav class="nav-container">
<a href="https://store.steampowered.com/curator/44885415/" target="_blank" class="button" aria-label="Steam">
<i class="fa-brands fa-steam"></i>
<span class="tooltip">Steam</span>
</a>
<a href="https://youtube.com/channel/UCm1WDZAjLu9QgVrmww-9r_Q" target="_blank" class="button" aria-label="YouTube">
<i class="fa-brands fa-youtube"></i>
<span class="tooltip">YouTube</span>
</a>
<a href="https://github.com/EnigmaticComma" target="_blank" class="button" aria-label="Github">
<i class="fa-brands fa-github"></i>
<span class="tooltip">Github</span>
</a>
<a href="https://instagram.com/enigmaticcomma/" target="_blank" class="button" aria-label="Instagram">
<i class="fa-brands fa-instagram"></i>
<span class="tooltip">Instagram</span>
</a>
</nav>
<footer class="site-footer">
<p>© 2019–<span id="current-year"></span> Enigmatic Comma. Developed by Christopher Ravailhe.</p>
</footer>
<script>
document.getElementById("current-year").textContent = new Date().getFullYear();
</script>
</body>
</html>