-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.html
37 lines (37 loc) · 964 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
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<style>
body {
min-width: 200px;
min-height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h2 {
margin: 0;
}
button {
padding: 8px 16px;
font-size: 13px;
min-width: 100px;
max-width: 90%;
border: none;
outline: none;
background-color: #1b9a59;
color: #fff;
}
.faded { color: #777 }
a { text-decoration: none; }
</style>
</head>
<body>
<h2>WhatsApp Stalker</h2>
<p>Click button below to start stalking</p>
<button id="startBtn">Start</button>
<p class="faded">By <a href="https://utkarsh914.github.io">Utkarsh Tiwari</a></p>
<script src="popup.js"></script>
</body>
</html>