-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Base64 Decoder-Encoder</title>
<meta name="description" content="Decodes Base64 or Encodes it">
<meta name="author" content="ILIA NATCHKEBIA">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css" />
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="js/base64.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
</head>
<body>
<div style="width:960px;margin:10px auto;">
<h1 style="text-align:center">Base64 Encoder/Decoder</h1>
<div class="input-group">
<span class="input-group-addon">Base64 or Normal Text</span>
<input type="text" class="form-control" placeholder="Text goes here...">
<span class="input-group-btn">
<button class="btn btn-success" type="button">Do it!</button>
</span>
</div>
</div>
</body>
</html>