mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-06 06:20:30 +02:00
binary translator
This commit is contained in:
parent
6e7169a1c0
commit
c6e1b4717e
3 changed files with 73 additions and 0 deletions
21
binary/index.html
Normal file
21
binary/index.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Binary Translator</title>
|
||||
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="card shadow">
|
||||
<h1>Binary Translator</h1>
|
||||
<textarea id="textInput" placeholder="Enter text..." rows="5"></textarea>
|
||||
<button id="translate-to-binary">Translate to Binary</button>
|
||||
<textarea id="binaryOutput" placeholder="Binary Code..." rows="5"></textarea>
|
||||
<button id="translate-to-text">Translate to Text</button>
|
||||
</div>
|
||||
|
||||
<script src="index.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue