-
Notifications
You must be signed in to change notification settings - Fork 0
/
practice.html
48 lines (43 loc) · 1.53 KB
/
practice.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8"/>
<title>Portle - Practice Mode</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="author" content="HugoBDesigner">
<meta name="twitter:site" content="@HugoBDesigner" />
<meta name="twitter:creator" content="@HugoBDesigner" />
<meta name="twitter:card" content="summary" />
<meta property="og:title" content="Portle - Practice Mode" />
<meta property="og:url" content="https://hugobdesigner.github.io/Portle/" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Portle is an online word-guessing game heavily inspired by Wordle, but themed and developed around the Portal video-game franchise. A new Portle game is available every day." />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="https://hugobdesigner.github.io/Portle/images/card.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<style type="text/css">
html {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
body {
margin: 0px;
padding: 0px;
height: 100%;
}
iframe[seamless] {
display: block;
border: none;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<iframe src="index.html?practice=true" seamless></iframe>
</body>
</html>