-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (99 loc) · 4.22 KB
/
index.html
File metadata and controls
104 lines (99 loc) · 4.22 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tukyo Games</title>
<link rel="stylesheet" href="style.css">
<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=Rubik+Mono+One&family=VT323&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body>
<div class="logo">
<img src="assets/logo.png" alt="Tukyo Games Logo">
</div>
<canvas id="rain"></canvas>
<div class="container" id="released-games">
<h2>Play Now!</h2>
<div class="game" id="desypher-panel">
<div class="game-description">
<h3>deSypher - An onchain puzzle game.</h3>
<p>Guess the correct word within the maximum attempts to earn crypto rewards!</p>
</div>
<a href="https://desypher.net/" target="_blank">
<img src="assets/gradient.png" class="game-overlay"></img>
<img src="assets/desypher-screenshot.png" alt="deSypher" class="game-preview"></img>
</a>
</div>
</div>
<div class="container" id="unreleased-games">
<h2>Coming Soon</h2>
<div class="game" id="spf-panel">
<div class="game-description">
<h3>Super Prison Fighters</h3>
<p>Compete against others to escape prison! Unique weapon synergies create a hectic and fast-paced
multiplayer experience.</p>
</div>
<a href="" target="_blank">
<img src="assets/gradient.png" class="game-overlay"></img>
<video src="assets/spf-video.mp4" alt="deSypher" class="game-preview" autoplay muted loop></video>
</a>
</div>
<div class="game" id="spf-panel">
<div class="game-description">
<h3>Super G.I.M.P. Girl</h3>
<p>Experience the world of Cirra from the eyes of Quinn, a rogue G.I.M.P. agent as she attempts to save
her sister.</p>
</div>
<a href="" target="_blank">
<img src="assets/gradient.png" class="game-overlay"></img>
<video src="assets/sgg-video.mp4" alt="deSypher" class="game-preview" autoplay muted loop></video>
</a>
</div>
</div>
<div class="container" id="unreleased-games">
<h2>Partnerships & Collaborations</h2>
<div class="game" id="carlo-panel">
<div class="game-description">
<h3>Carlo "The Game"</h3>
<p>A spin on the classic arcade game, Pac-Man.</p>
</div>
<a href="" target="_blank">
<img src="assets/gradient.png" class="game-overlay"></img>
<img src="assets/carlo-screenshot.png" alt="deSypher" class="game-preview" autoplay muted loop></img>
</a>
</div>
</div>
<script src="script.js"></script>
<script src="rain.js"></script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "VideoGame",
"name": "TukyoGames",
"description": "A crypto-focused indie gaming team.",
"image": [
"" // TODO: PREVIEW IMAGE FOR LINKS
],
"publisher": {
"@type": "Organization",
"name": "TUKYO LLC"
}
}
</script>
</body>
<div class="footer">
<!-- #region Social Media Section -->
<div class="social-media-section">
<a href="https://twitter.com/TUKYOWAVE" alt="Twitter Icon Link" target="_blank" class="social-icon"><i
class="fab fa-twitter"></i></a>
<a href="https://t.me/tukyogames" alt="Telegram Icon Link" target="_blank" class="social-icon"><i
class="fab fa-telegram"></i></a>
<a href="https://github.com/Tukyo/" alt="Github Icon Link" target="_blank" class="social-icon"><i
class="fab fa-github"></i></a>
</div>
<!-- #endregion Social Media Section -->
</div>
</html>