-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 905 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>AutoPomodoro</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header><div class="autopom">AutoPomodoro</div></header>
<h1 id="title">Let's get stuff done!</h1>
<img src="https://i.postimg.cc/BbJYfTZV/smileytomato.png" width="150" height="150"></img>
<p id="countdown">0:00</p>
<div class="buttons">
<button id="start-btn" class="btn">Start</button>
<button id="pause-btn" class="btn">Pause</button>
<!-- <button id="break-btn" class="btn">Break</button> -->
</div>
<script src="script.js"></script>
</body>
</html>