-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
108 lines (91 loc) · 3.84 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-ZDR9EDPEQH"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-ZDR9EDPEQH");
</script>
<link
rel="icon"
type="image/x-icon"
href="favicon_io/android-chrome-512x512.png"
/>
<meta charset="UTF-8">
<meta name="description" content="Word Bord, a daily word puzzle">
<meta name="keywords" content="Word Bord, Word, Word Game, Wordle, Rubik's cube, Puzzle, p5js">
<meta name="author" content="Eric Xie">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Word Bord">
<meta property="og:type" content="game">
<meta property="og:description" content="Spin rows and columns to create as many words possible in 20 moves.
Choose between a 4x4 or 5x5 bord.
Score top ten for the day to land a spot on the leaderboard.
A new bord is available every day.">
<meta property="og:image" content="favicon_io/android-chrome-512x512.png">
<meta property="og:url" content="https://wordbord.com">
<meta name="twitter:card" content="summary">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta name="google-site-verification" content="wh_ELrRLsP2zssXZOKKXXCnugDv77WpAqVfpNxz27A8"/>
<link rel="apple-touch-icon" sizes="180x180" href="/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon_io/favicon-16x16.png">
<link rel="android-chrome" type="image/png" sizes="192x192" href="/favicon_io/android-chrome-192x192.png">
<link rel="android-chrome" type="image/png" sizes="512x512" href="/favicon_io/android-chrome-512x512.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous" />
<title>Word Bord - Daily Word Puzzle</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/addons/p5.sound.min.js"></script>
<script src="js/sketch.js"></script>
<script src="js/tile.js"></script>
<script src="js/fadingText.js"></script>
<script src="js/popup.js"></script>
<script src="js/slidingButton.js"></script>
<script src="js/button.js"></script>
<style>
h1 {
color: white;
}
.center {
/* margin: auto; */
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 40%;
height: 40%;
/* border: 4px solid #000000; */
padding: 10px;
}
.center p {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
text-align: center;
font-size: 50px;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-family: "Lucida Console", "Courier New", monospace;
}
</style>
<h1>Word Bord is a fun word puzzle. With movement inspired by a Rubik's cube, spin rows and columns to create words. Choose between a 4x4 or 5x5 bord and create as my unique words a possible in the limited number of moves. Every day has a unique bord.
</h1>
<div class="center">
<p>Loading...</p>
</div>
</body>