-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 802 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 802 Bytes
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
<!-- This extension is made by Iman Yousefi [https://github.com/iman-yousefi] -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>New Tab</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<!-- Theme toggle button -->
<div class="options-menu">
<button id="scale-toggle" title="Change scale">
<span id="scale-value">100%</span>
</button>
<button id="theme-toggle" title="Toggle theme">
</button>
</div>
<main class="container" id="bookmarks-container">
<!-- Bookmarks will be dynamically inserted here -->
</main>
<script src="script.js"></script>
</body>
</html>