mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-05 14:00:31 +02:00
21 lines
739 B
HTML
21 lines
739 B
HTML
<!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="cards 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>
|