-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Irys Playground</title>
<link href="https://fonts.googleapis.com/css?family=Inter:700,400&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="irys.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="center-box">
<div class="logo-img">
<img src="Logo.png" alt="IRYS Logo">
</div>
<h1>Welcome to the Irys Playground!</h1>
<p class="desc">
Play and learn with Irys!<br>
Choose a game below to start your journey:<br>
<b>Sprite Snake</b> — guide Sprite, grow your chain!<br>
<b>Sprite Memory</b> — find all Sprite pairs before time runs out!<br>
<b>Irys Quiz</b> — test your knowledge about Irys!
</p>
<div class="btn-group">
<a href="snake.html" class="main-btn">Play Sprite Snake</a>
<a href="memory.html" class="main-btn">Play Sprite Memory</a>
<a href="quiz.html" class="main-btn">Play Irys Quiz</a>
</div>
</div>
</body>
</html>