-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (79 loc) · 2.8 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GMTK - Video Game Culture Quiz</title>
<!-- SEO meta tags -->
<meta
name="description"
content="Test your video game culture based on GMTK's '100 Games That Taught Me Game Design' video."
/>
<meta name="keywords" content="video game, game design, culture test, GMTK, Game Maker's Toolkit" />
<meta name="author" content="Deniz Algin" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gmtk.denizalgin.com" />
<meta property="og:title" content="GMTK Video Game Culture Quiz" />
<meta
property="og:description"
content="Test your video game culture. How many of these influential games have you played?"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://gmtk.denizalgin.com" />
<meta property="twitter:title" content="GMTK Video Game Culture Quiz" />
<meta
property="twitter:description"
content="Test your video game culture. How many of these influential games have you played?"
/>
<!-- Pico CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css?v=2" />
</head>
<body>
<div class="container">
<header>
<h3>Video Game Culture Quiz</h3>
<p>
Based on the video
<a href="https://www.youtube.com/watch?v=gWNXGfXOrro">100 Games That Taught Me Game Design</a>
by Game Maker's Toolkit
</p>
</header>
<main>
<section id="game-container">
<article id="game-card" class="game-card">
Did you play
<h4 id="game-name"></h4>
<img id="game-image" class="game-image" src="" alt="Game cover" loading="lazy" />
</article>
</section>
<section id="game-footer">
<div class="button-container">
<button id="no-button">No (←)</button>
<button id="yes-button">Yes (→)</button>
</div>
<div class="progress-container">
<progress id="progress" value="0" max="100"></progress>
<span id="progress-text"></span>
</div>
<div>
Made by
<a href="https://denizalgin.com">Deniz</a>
🧙♂️ - Open source at
<a href="https://github.com/Guandor/gmtk-quiz">GitHub</a>
</div>
</section>
<section id="result" class="result-container" style="display: none">
<h2>Results</h2>
<p id="result-text"></p>
<button onclick="exportAsCSV()">Download as CSV</button>
</section>
</main>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
<script src="script.js?v=2"></script>
</body>
</html>