-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
35 lines (28 loc) · 1005 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom Font Applier</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Font Switcher</h1>
<label for="language">Choose Language:</label>
<select id="language">
<option value="arabic">Arabic</option>
<option value="english">English</option>
</select>
<label for="fontSelect">Select Font:</label>
<select id="fontSelect"></select>
<label for="websiteLink">Website Link:</label>
<input type="text" id="websiteLink" placeholder="Enter website URL" />
<button id="saveBtn">Save</button>
<h2>Saved Websites</h2>
<ul id="websiteList"></ul>
<h2>Extension Info</h2>
<p>Author: RELANCER LTD</p>
<p>Website: <a href="https://relancer.co">www.relancer.co</a></p>
<script src="popup.js"></script>
</body>
</html>