-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
52 lines (42 loc) · 1.5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Should you have some coffee?</title>
<meta name="description" content="Should you have some coffee?">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Rubik:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="stylesheet.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KL2ZF9MSFX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KL2ZF9MSFX');
</script>
</head>
<body>
<div class="container">
<h1>Should you have some coffee?</h1>
<div class="sticky-bar">
<div class="bar-start"></div>
<div class="bar-container">
<div class="bar-no red-background">
<span>No</span>
</div>
<div class="bar-yes green-background">
<span>Yes</span>
</div>
</div>
<div class="total-percentage red-text"><span> 0%</span></div>
</div>
<div class="questions">
</div>
<p>Send me your feedback on Twitter: <a href="https://twitter.com/voxelbased">https://twitter.com/voxelbased</a></p>
<p>Make this page better by <a href="https://github.com/marcospgp/should-you-have-some-coffee">submitting a pull request on Github</a></p>
</div>
<script src="questions.js"></script>
<script src="main.js"></script>
</body>
</html>