-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (22 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>React Pomodoro change styling</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container-div">
<div id="target-node"></div>
<div>
<div id='project-details'>
<h6><span style="color:red">Project: </span>Here is the ultimate productivity tool: The Pomodoro Clock! Studies show that efficient focus can only be maintained for so long and so this timer ensures that you chunk your work time into manageable increments. Work for around 25 minutes, break for 5, and repeat!</h6>
<h6><span style='color:red'>Tech: </span>HTML, CSS, Bootstrap, CSS Grid, and React.<h6>
<h6><span style='color:red'>GitHub: </span><a href='https://github.com/jayAardvark/pomodoro' target='_blank'>Examine the code here!</a>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/react/16.6.1/umd/react.production.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.1/umd/react-dom.production.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>