forked from imisaacwu/SafeScroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 1.33 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
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<script src="tailwind.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- <meta http-equiv="Content-Security-Policy" content="script-src 'self' https://cdn.tailwindcss.com/; report-uri /csp-report-endpoint;"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>SafeScroll</title>
</head>
<body>
<header>
<img src="safeScrollLogo.png" alt="logo" class="logo">
<h1 class="title">SafeScroll</h1>
</header>
<div class="input-div">
<input type="text" id="task-input" class="task-input" placeholder="Enter trigger words"/>
<button id="task-submit-btn" class="task-btn task-btn-submit">Add</button>
</div>
<label class="switch">
<input type="checkbox" id="master">
<span class="slider round"></span>
<div>Toggle Blur</div>
</label>
<div class="tasks-list-div" id="tasksList"></div>
<div class="task-clear-div">
<button id="task-clear-btn" class="task-btn task-btn-clear">Clear All</button>
</div>
<form>
<script src="popup.js"></script>
<script src="code.js"></script>
</form>
<a target="_blank" href="http://www.safescroll.co">?</a>
</body>
</html>