-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
27 lines (27 loc) · 873 Bytes
/
popup.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
<!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 Extension</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<h1 class="extension_name">Timer Extension</h1>
<h2 class="current_time_title">Current Time</h2>
<h2 id="time"></h2>
<div id="name"></div>
<h2 class="timer_title">Your Timer is at</h2>
<h2 id="timer"></h2>
<div class="btn_group">
<div class="wrapper">
<button id="start-btn">Start</button>
<button id="stop-btn">Stop</button>
<button id="reset-btn">Reset</button>
</div>
</div>
<h4 class="author">Develop By <b>Younus Ali Akash</b></h4>
<script src="popup.js"></script>
</body>
</html>