-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
57 lines (51 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>FOCUS DUDE</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Ubuntu:wght@400;700&display=swap" rel="stylesheet">
<style type="text/css">
body {
font-family: "Montserrat", "Ubuntu", sans-serif;
overflow-y: scroll;
overflow-x: hidden;
}
#quote {
font-size: 90px;
font-weight: 900;
text-align: center;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div id="quote"></div>
<script type="text/javascript">
var quotes = [
"Focus Dude, Focus !!!",
"GO TO THE WORK DUDE.",
"REMEMBER WORK? GO DO IT.",
"WHAT THE FUCK? GO WORK.",
"WORK DUDE WOOORRRKKK!!!",
"GO LOOK AT THE SKY IF YOU NEED A BREAK.",
"STOP WASTING TIME AND WORK.",
"FOCUS FOCUS FOCUS",
"SHIT, GO BACK TO WORK",
"JUST SHIP IT!!!",
"YOU NEED FOCUS TO GET SHIT DONE",
"THIS URL IS SHIT. FOCUS RIGHT NOW"
];
function getQuote () {
return quotes[Math.floor(Math.random() * (quotes.length-1))];
}
function setQuote() {
document.querySelector("#quote").textContent = getQuote();
}
window.onload = setQuote;
</script>
</body>
</html>