-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 990 Bytes
/
index.html
File metadata and controls
45 lines (42 loc) · 990 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="lorem">
<meta name="keywords" content="key,words">
<title>extract class name</title>
<style>
div {
margin-bottom: 1em;
}
p {
margin: 0;
}
textarea {
width: 400px;
height: 30vh;
resize: none;
}
</style>
</head>
<body>
<div>
<button id="convert-btn">convert</button>
<button id="clear-btn">clear</button>
<button id="reset-btn">reset</button>
<span>time:</span><span id="timer">0</span><span>ms</span>
</div>
<div>
<p>source:</p>
<textarea id="input-area"></textarea>
</div>
<div>
<p>extracted:</p>
<textarea id="output-area"></textarea>
</div>
<script src="extract-class-name.js"></script>
<script src="main.js"></script>
</body>
</html>