-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexercise.html
35 lines (32 loc) · 1.05 KB
/
exercise.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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/exercise.css">
<link rel="icon" href="images/eyeIcon.png">
<title>Blink Alert</title>
</head>
<header>
<h1>20-20-20 Exercise</h1>
<hr>
</header>
<body>
<div id="countdown-timer" class="countdown-timer"></div>
<div id="modal" class="modal">
<div class="modal__header">
<h2>Exercise</h2>
</div><br><br>
<div id="message">
After or during a long day of working with a computer, it is recommended to keep your eyes healthy for the long
run by taking the 20-20-20 exercise every at interval</div> <br>
<hr>
<br>
<div class="rule" id="message">Look Away From Your Computer, Look at something 20 feets away for 20 seconds (see
timer..)<br> -BLINK AS MANY TIMES AS YOU CAN</div>
</div>
<script src="js/main.js"></script>
<script src="js/background.js"></script>
</body>
</html>