-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (140 loc) · 4.65 KB
/
Copy pathindex.html
File metadata and controls
147 lines (140 loc) · 4.65 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!doctype html>
<html lang="en">
<head>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=%VITE_GA_ID%"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', '%VITE_GA_ID%');
</script>
<script>
if (window.location.hostname === 'thezenofhangman.vercel.app')
window.location.replace(
'https://thumbfeed.com/the-zen-of-hangman/' +
window.location.pathname,
);
</script>
<!-- HTML Meta Tags -->
<title>The Zen of Hangman: A calm, minimalist take on hangman</title>
<meta
name="description"
content="Play The Zen of Hangman, a calm, minimalist take on hangman. Guess the word. Breathe. Repeat."
/>
<meta
name="keywords"
content="The Zen of Hangman, hangman, zen, calm, minimal, zen game, hangman game, play hangman, online hangman, online game, buddhist game, chill game"
/>
<meta name="author" content="Michael Kolesidis" />
<meta name="theme-color" content="#f8efe7" />
<!-- Facebook Meta Tags -->
<meta
property="og:url"
content="https://thumbfeed.com/the-zen-of-hangman/"
/>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Thumbfeed" />
<meta property="og:locale" content="en_US" />
<meta
property="og:title"
content="The Zen of Hangman: A calm, minimalist take on hangman"
/>
<meta
property="og:description"
content="Play The Zen of Hangman, a calm, minimalist take on hangman. Guess the word. Breathe. Repeat."
/>
<meta
property="og:image"
content="https://thumbfeed.com/the-zen-of-hangman/the-zen-of-hangman-preview.png"
/>
<meta
property="og:image:secure_url"
content="https://thumbfeed.com/the-zen-of-hangman/the-zen-of-hangman-preview.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="The Zen of Hangman game preview" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:domain" content="thumbfeed.com" />
<meta
name="twitter:url"
content="https://thumbfeed.com/the-zen-of-hangman/"
/>
<meta
name="twitter:title"
content="The Zen of Hangman: A calm, minimalist take on hangman"
/>
<meta
name="twitter:description"
content="Play The Zen of Hangman, a calm, minimalist take on hangman. Guess the word. Breathe. Repeat."
/>
<meta
name="twitter:image"
content="https://thumbfeed.com/the-zen-of-hangman/the-zen-of-hangman-preview.png"
/>
<meta name="twitter:image:alt" content="The Zen of Hangman game preview" />
<!-- Fonts -->
<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=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
</head>
<body style="background-color: #f8efe7">
<a href="https://thumbfeed.com" class="site-logo">
<img
id="desktop-logo"
class="site-logo-img"
src="thumbfeed-logo-inline.svg"
alt="Thumbfeed logo"
/>
<img
id="mobile-logo"
class="site-logo-img"
src="thumbfeed-logo.svg"
alt="Thumbfeed logo"
/>
</a>
<header id="desktop-title">
<h1>The Zen of Hangman</h1>
</header>
<div id="hangman">
<div class="drawing" id="drawing">
<div class="drawing_container"></div>
<div class="drawing_message"></div>
</div>
<div id="result"></div>
</div>
<div id="board">
<div id="chars" class="chars"></div>
<div id="keyboard" class="keyboard"></div>
</div>
<div id="modal" class="modal" aria-hidden="true">
<div class="modal_background"></div>
<div class="modal_main">
<div class="modal_content"></div>
<div class="modal_actions">
<button id="new-game-button">New Game</button>
</div>
</div>
</div>
<footer>
<h1 id="mobile-title">The Zen of Hangman</h1>
<p>by Michael Kolesidis</p>
</footer>
<script type="module" src="/src/main.js"></script>
</body>
</html>