-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.html
33 lines (29 loc) · 980 Bytes
/
timer.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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Timer</title>
<link rel="stylesheet" type="text/css" href="timer.css">
</head>
<body>
<div class="studyCard">
<div class="timer">
<h1 id="topicName">Time Left (60 Minutes)</h1>
<h2 id="timeLeft"></h2>
</div>
<div class="studyForm">
<div class="questions">
<h3>What To Study</h3>
<textarea id="focus" placeholder="Topic to focus on?"></textarea>
<h3>What did I learn?</h3>
<textarea id="reviewInput" col="12" rows="12"></textarea>
<button id="addBtn" type="button">Add!</button>
</div>
<div id="learnReview"></div>
</div>
</div>
<script src="timer.js"></script>
</body>
</html>