-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.html
28 lines (24 loc) · 880 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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1 style="font-family:Courier New;padding:0;color:#1b262c">
HTML Prank! <img style="width:40px;float:right" src="https://img.icons8.com/dusk/64/000000/cat.png"></h1>
<hr>
<p style="width:400px;font-family:Courier">
When you Click the Start button, You will get the permission to change any text present in the Screen.
After Changing the text click the Stop Button. Using it you can do some pranks with your Friends.
Hope you enjoy,Thanks.
</p>
<button id="start_prank"
style="padding:7px;outline:0;border-radius:10px;background-color:#40db69;font-family:Bookman;font-size:15px;">
Start Prank
</button>
<button id="stop_prank"
style="padding:7px;outline:0;border-radius:10px;background-color:#f65c78;font-family:Bookman;font-size:15px">
Stop Prank
</button>
<script src="popup.js"></script>
</body>
</html>