-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (37 loc) · 1.12 KB
/
Copy pathindex.html
File metadata and controls
46 lines (37 loc) · 1.12 KB
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
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>HTML Entity Decoder</title>
</head>
<body>
<noscript>
<div>
<h2>Something went wrong</h2>
<p>Looks like Javascript is <b>turned off</b> in your browser or isn't <b>supported</b> in your browser.</p>
</div>
</noscript>
<h1>HTML Entity Decoder</h1>
<!--input area-->
<div>
<h3>Enter HTML Entity Here</h3>
<div id="input-block">
<button type="reset" id="btn-clear" class="btn">clear</button>
<label for="input">
<textarea id="input" cols="100" rows="10" placeholder="Enter Your Text"></textarea>
</label>
</div>
</div>
<!--output area-->
<div>
<h3>Result</h3>
<div>
<textarea id="output" readonly></textarea>
<input type="button" id="btn" class="btn" value="Copy Result">
</div>
</div>
</body>
</html>