-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (42 loc) · 1.47 KB
/
index.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
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Encoder & Decoder</title>
<link rel="stylesheet" href="styles.css" />
<script src="main.js"></script>
</head>
<body>
<div class="roooot">
<div style="text-align: center">
<h2 class="h_2">Encoder / Decoder</h2>
</div>
<div>
<button class="btn" id="download1">download</button>
<button class="btn" id="file1">file</button>
<button class="btn" id="paste1">paste</button>
<button class="btn" id="copy1">copy</button>
<button class="btn" id="clear1">clear</button>
</div>
<div id="popDsp" style="display: none">
<button class="btn" id="pop1" style="float: right; font-size: 20px">
❌
</button>
<h2 style="text-align: center">Select File</h2>
<input id="setFile1" type="file" style="clear: both" />
</div>
<textarea id="inp1" style="clear: both" class="txt txt1"></textarea>
<div class="eml_">
<select class="opc elm_" id="opc"></select>
<button class="subm elm_" id="subm">Submit</button>
</div>
<div>
<button class="btn" id="download2">download</button>
<button class="btn" id="copy2">copy</button>
<button class="btn" id="clear2">clear</button>
</div>
<textarea id="inp2" class="txt"></textarea>
</div>
<script src="scripts.js"></script>
</body>
</html>