forked from getatopic/getatopic.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Get a topic</title>
<meta name="description" content="Random topics for discussion in English" />
<meta name="keywords"
content="random topics, discussion, English, get a topic, conversation starters, learning, practice" />
<meta property="og:title" content="Get a topic" />
<meta property="og:description" content="Random topics for discussion in English" />
<meta property="og:image" content="https://getatopic.com/img/og.png" />
<meta property="og:url" content="/" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="icon" type="image/png" href="/img/favicon.png" />
<link rel="stylesheet" href="./css/styles.css" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HR8F9XFT6D"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() { dataLayer.push(arguments) }
gtag('js', new Date())
gtag('config', 'G-HR8F9XFT6D');
</script>
</head>
<body>
<nav class="menu">
<button>
<span>Open menu</span>
</button>
<div class="menu__block">
<a href="/" class="accent active">Get a Topic</a>
<a href="/taboo" class="accent">Taboo</a>
<a href="https://t.me/getatopic_bot" class="text" target="_blank">Telegram Bot</a>
<a href="/about" class="text">About</a>
</div>
</nav>
<div class="container aic js-random">
<div class="topic js-topic">
<div class="hi">
<span class="mask">
<span class="word"
style="line-height: 1.25em; transition-delay: 0.2s; padding-top: .66em;">Hi</span>
</span>
<span class="mask" style="width: 1em; height: 1.5em;">
<img class="word" src="./img/peace.png"
style="transition-delay: 0.25s; width: 100%; height: 100%; display: block;" />
</span>
</div>
</div>
<div class="helper text">
<span class="click">Click</span> <span>anywhere for the <button>next random topic</button></span>
</div>
</div>
<script src='./data/topics.js'></script>
<script src='./js/topic.js'></script>
</body>
</html>