-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbreak.html
43 lines (39 loc) · 1.73 KB
/
break.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
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en" dir="ltr" style="width:400px; height:450px">
<head>
<script src="js/timer.js"></script>
<title>Timer Settings</title>
<link rel="stylesheet" href="css/options.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Slabo+27px&display=swap" rel="stylesheet">
</head>
<body style="margin-left: 35px" >
<div align="center"><a class="back" href="popup.html"><h4 style="color:white">< back</h4></a> </div>
<div align="center">
<img style="height: 60px; width: 60px; align-self: center;" src="icons/clock.png" alt="One Stop icon">
<h1>TIME MANAGER</h1>
</div>
<h2>Which tabs you want to close?</h2>
<form style="font-size: 15px">
<input type="radio" id="op1" name="closingTabs" value="all"/>
<label for="op1"><span></span>All tabs in all windows</label>
<br>
<input type="radio" id="op2" name="closingTabs" value="allCurrentWindow"/>
<label for="op2"><span></span>All tabs in current window</label>
<br>
<input type="radio" id="op3" name="closingTabs" value="recent"/>
<label for="op3"><span></span>All tabs opened after timer set</label>
<br>
<input type="radio" id="op4" name="closingTabs" value="this"/>
<label for="op4"><span></span>This tab only</label>
<br>
<br>
<h3>Enter Duration </h3>
<input type="number" name="time" placeholder="Time in minutes" min="0" value="0" required><b> minutes.</b>
<br>
<button type="submit" id="apply" class="save-button" style="height: 30px">Apply</button>
</form>
<br>
<br>
</body>
</html>