-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpopup.html
32 lines (30 loc) · 847 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WhatsApp-Web-Plus Extension</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<header class="header">
<h1>WhatsApp-Web-Plus</h1>
<p class="tagline">Enhance your WhatsApp experience</p>
</header>
<main class="content">
<p>Unlock premium features and take your WhatsApp to the next level!</p>
<br>
<!-- Settings Section -->
<div class="settings-container" id="settings_section">
<h1>Settings</h1>
<br>
</div>
</main>
<footer class="footer">
<p>© 2024 WhatsApp-Web-Plus</p>
</footer>
</div>
<script src="popup.js"></script>
</body>
</html>