-
Notifications
You must be signed in to change notification settings - Fork 1
/
Popup.html
57 lines (41 loc) · 1.45 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header-class">
<!-- <img class="logo-icon" src="images/webwatcher-48.png">
<h1 id="h1">Web Watcher</h1> -->
<div class="modal-header">
<h1 id="h1" class="logo">
<img class="logo-icon" src="images/webwatcher-48.png" />Web Watcher
</div>
</div>
<h2 id="h2a">Stop Procastinating <span style="color: black;">and </span> <span style="color: green;">Start working</span></h2>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="settings.html">Settings</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
<!-- <input id="userinput" placeholder="Enter site name"> <button id="btn1" onclick="get()"> Submit </button>
<h3 id="message"> </h3> -->
<!-- Current Blocked Sites:
<span style="color: #ff0100;">Youtube</span>
|
<span style="color: #0e8ef2;">Facebook</span>
|
<span style="color: #e50914;">Netflix</span>
</span> -->
<script>
// function get(){
// let userinput=document.querySelector("#userinput");
// let message=document.querySelector("#message");
// message.innerHTML="The webpage added is "+ userinput.value;
// }
</script>
</body>
</html>