-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
36 lines (36 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grammarly With Ghost</title>
<link rel="stylesheet" href="assets/css/sbuttons.min.css" />
<link rel="stylesheet" href="assets/css/popup.css" />
</head>
<body>
<div class="container">
<h1>Grammarly with Ghost</h1>
<div class="field disable">
<label id="promptLabel">Enable?</label>
<button class="sbtn toggle-btn toggle-off-btn" id="toggleBtn"></button>
</div>
<span class="separator"></span>
<footer>
<span class="made">Made by <a href="https://blog.shahednasser.com" target="_blank">Shahed Nasser</a><br /></span>
<div class="social-links">
<a href="https://github.com/shahednasser" target="_blank">
<img src="assets/images/github.svg" class="social-image" />
</a>
<a href="https://twitter.com/shahednasserr" target="_blank">
<img src="assets/images/twitter.svg" class="social-image" />
</a>
<a href="https://instagram.com/shahednasser95" target="_blank">
<img src="assets/images/instagram.svg" class="social-image" />
</a>
</div>
</footer>
</div>
<script src="assets/js/popup.js"></script>
</body>
</html>