-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (36 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset='UTF-8'>
<title>64-Decoder</title>
<script src="script.js" defer></script>
</head>
<body>
<div class="top-row">
<div class="top-row__left"></div>
<div class="top-row__center"><h1>Base64-Decoder</h1></div>
<div class="top-row__right"></div>
</div>
<div class="body-row">
<div class="body-row__top">
<div class="body-row__input">
<textarea data-input class="input-text">Paste base64 data here</textarea>
</div>
<div class="body-row__output">
<textarea data-output class="output-text">Message will decode in this window</textarea>
</div>
</div>
<div class="body-row__bottom">
<div class="bottom-half">
<div class="bottom-text"><h2>Paste Input</h2></div>
<div><img data-trash src="resources\img\trash.svg"></div>
</div>
<div class="bottom-half">
<div class="bottom-text"><h2>Output</h2></div>
<div><img data-copy src="resources\img\copy.svg"></div>
</div>
</div>
</div>
</body>
</html>