-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trink Timer</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Trink Timer</h1>
</header>
<div id="timer_wrapper">
<input id="timer_value" type="text" placeholder="insert minutes">
<button id='start_timer' onclick={startTimer()}>start</button>
<button onclick={stopTimer()}>stop</button>
<button onclick={resumeTimer()} >resume</button>
<button onclick={resetTimer()}>reset Timer</button>
<div id="timer_output"></div>
</div>
<footer>
<div id="footer_nav">
<p>created by LorAutumn (private Website)</p>
</div>
</footer>
<script type="text/javascript" src="./app.js"></script>
</body>
</html>