-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.25 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.25 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- Author: Salvador Guerrero -->
<!--suppress HtmlFormInputWithoutLabel -->
<html lang="en">
<head>
<title>Base64 Encode ⇄ Decode</title>
<script type="application/javascript" src="actions.js" defer></script>
<script type="application/javascript" src="counter.js" defer></script>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="container">
<div id="header" class="textStyle">Base64 Encode ⇄ Decode</div>
<div id="inputDiv" class="largeTextDiv"><textarea id="inputTextArea" class="textStyle" placeholder="Paste text here..." cols="0" rows="0"></textarea></div>
<div id="buttonsDiv">
<button id="encodeButton" class="textStyle" title="Base64 Encode">Encode</button>
<div class="verticalLine"></div>
<button id="decodeButton" class="textStyle" title="Base 64 Decode">Decode</button>
</div>
<div id="resultDiv" class="largeTextDiv"><textarea id="resultTextArea" class="textStyle" placeholder="Paste something in the above text area and click a button..." cols="0" rows="0" readonly></textarea></div>
<div id="footer" class="textStyle">Created by Salvador Guerrero</div>
</div>
</body>
</html>