-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
27 lines (27 loc) · 879 Bytes
/
popup.html
File metadata and controls
27 lines (27 loc) · 879 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./popup.css" rel="stylesheet" />
<title>HumanizeAI</title>
</head>
<body class="bg-hiapurple w-80 p-4">
<div class="flex justify-between items-center">
<h1 class="text-white text-md font-bold font-poppins">HAI</h1>
<h1 class="text-white text-md font-bold font-poppins">HumanizeAI</h1>
</div>
<div class="flex justify-center">
<textarea class="rounded-sm w-5/6 mt-4"></textarea>
</div>
<div id="box" class="flex justify-center gap-4">
<button
id="submit"
class="mt-4 w-2/6 font-poppins font-bold bg-white rounded-full text-hiapurple"
>
Humanize
</button>
</div>
<script src="./background.js"></script>
</body>
</html>