-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (31 loc) · 1.62 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
<!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="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="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<header>
<h1 id="logo" class="title is-1 is-flex is-justify-content-center">PomoFocus</h1>
</header>
<div id="call-to-action" class="is-flex is-flex-direction-column is-justify-content-center is-align-items-center">
<p id="description-text" class="is-size-4">Welcome to PomoFocus! This app follows the Pomodoro Technique, a time
management strategy where you will focus on one task for 25 minutes and then take a break for 5 and repeat.
</p>
<a id="start-btn" href="focus.html" class="button is-large is-rounded">Get Started</a>
</div>
<footer>
<p class ="is-flex is-flex-direction-column is-align-items-center">© 2023 Pomofocus App. All rights reserved. ™</p>
</footer>
<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>
</body>
</html>