-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbreak.html
35 lines (30 loc) · 1.56 KB
/
break.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PomoFocus</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<header class="is-flex is-flex-direction-column is-align-items-center">
<h1 id="logo" class="title is-1 ">PomoFocus</h1>
<h3 class="break is-size-2"> Break Time</h3>
<p class="break is-size-4">Take five minutes for a breather!</p>
</header>
<div id="quote-display" class="is-flex is is-flex-direction-column is-align-items-center mt-1">
<h1 id="timer-text" class="title is-size-1">5:00</h1>
<h2 id="break-quote" class="title is-size-3 pt-5">"Keep your nose out the sky, keep your heart to god, and keep
your face to the rising sun" </h2>
<h3 class="is-size-4">- Kanye West</h3>
</div>
<script src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/dayjs@1.10.4/dayjs.min.js"></script>
<script src="./JavaScript/script.js"></script>
<script src="./JavaScript/kanye.js"></script>
</body>