blob: b881a356c0a6310ffa2c3ab3fa0bc42b7afd4942 (
plain)
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
46
47
48
49
50
|
<!doctype html>
<html>
<head>
<title>Binary Converter</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="../JS/binary.js"></script>
<script src="../JS/oldsidenav.js"></script>
<link rel="stylesheet" href="../CSS/old.css">
</head>
<body onkeydown="keyCode(event)" id="body">
<div id="main">
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
</div>
<center>
<div class="container">
<h1>Binary Converter</h1><br>
<textarea rows="20" cols="360" onKeyUp="convertBinary()" id="inputBinary" class="inputBinary" placeholder="Enter Text"></textarea><br>
<textarea id="outputBinary" rows="20" cols="360" class="outputBinary"></textarea>
</div>
</center>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="https://mcd223.github.io">Home</a>
<a href="https://mcd223.github.io/morsecode/">Morse code</a>
<a href="https://mcd223.github.io/binary/" id="pLink">Binary</a>
<a href="https://mcd223.github.io/Pacman/" id="pLinks">Google Pacman</a>
<a href="https://duckduckgo.com/">DuckDuckGo</a>
<a href="https://mail.google.com/mail/u/0/?tab=wm#inbox">Gmail</a>
<a href="https://play.google.com/music/listen?authuser&u=0#/home">Google Play Music</a>
<a href="https://photos.google.com/">Google Photos</a>
<a href="https://drive.google.com/drive/u/0/my-drive">Google Drive</a>
<a href="https://www.youtube.com">Youtube</a>
<a href="https://www.github.com/">Github</a>
<a href="https://8values.github.io/">8Values</a>
<a href="https://www.politicalcompass.org/test/">Political Compass</a>
<a href="https://www.twitch.tv/">Twitch</a>
<a href="http://www.w3schools.com/html/default.asp">html tutorial</a>
<a href="http://www.urbandictionary.com/">Urban Dictionary</a>
<a href="http://ai2.appinventor.mit.edu/">google app maker</a>
<a href="https://www.google.com/voice/">google voice</a>
<a href="http://www.computerhope.com/overview.htm">MS-DOS commands</a>
<a href="http://geektyper.com/">GEEK TYPER</a>
<a href="https://www.dropbox.com/home">dropbox</a>
<a href="https://sites.google.com/a/simplelittledream.com?tab=m3&pli=1">Google Sites</a>
<a href="https://drive.google.com/keep">Google Keep</a>
<a href="https://www.google.com/">Google.com</a>
</div>
</body>
</html>
|