-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtabUI.html
32 lines (25 loc) · 828 Bytes
/
tabUI.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>
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="tabUI.css">
</head>
<body>
<div class="content">
<div class="header">
<img src="logo.png"/>
<h1>zwBlocker</h1>
<p>Find zero-width characters</p>
</div>
<span class="title">Zero-width characters removed:</span>
<button id="btn-copy-clean">Copy</button>
<div contentEditable="true" id="clean" class="edit selected-clean"></div>
<span class="title">Zero-width characters replaced with 💀:</span>
<button id="btn-copy-emoji">Copy</button>
<div contentEditable="true" id="emoji" class="edit selected-emoji"></div>
</div>
<script src="jquery.js"></script>
<script src="tabUI.js"></script>
</body>
</html>