-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.html
More file actions
28 lines (24 loc) · 766 Bytes
/
ui.html
File metadata and controls
28 lines (24 loc) · 766 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
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="ui.css">
<script src="ui.js" defer> </script>
<title>Xgui4 Addon UI</title>
</head>
<body>
<nav>
<img src="icon/icon.png" width="100" height="100" alt="Xgui4 Addon Icon"/>
<h1>Xgui4 Addon</h1>
</nav>
<h2>Hello World! Welcome to my Addon! </h2>
<p>Hope you like it!</p>
<div class="flex">
<a href="https://xgui4.github.io/">
<button><span class="one-color-emoji">🌐</span> My website</button>
</a>
<button onclick="browswer.runtime.openOptionPage()">⚙ Setting </button>
</div>
</body>
</html>