You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
757 B
HTML
37 lines
757 B
HTML
2 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Encoding Converter</title>
|
||
|
<meta charset="UTF-8">
|
||
|
|
||
|
<!-- CSS -->
|
||
|
<link rel="stylesheet" href="/public_html/si21-2/enconv/enconv.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<!-- adding glitch effect to text -->
|
||
|
<div>
|
||
|
<h1>Encoding Converter</h1>
|
||
|
<p>Type a word, click 'convert' and let the magic begin!</p>
|
||
|
</div>
|
||
|
|
||
|
<!-- adding table with all encodings -->
|
||
|
<form>
|
||
|
<label for="input">Input:</label>
|
||
|
<input type="text" id="input" name="input" placeholder="Type a word...">
|
||
|
<button>Convert</button>
|
||
|
</form>
|
||
|
|
||
|
<!-- adding table with all encodings -->
|
||
|
<table id="result">
|
||
|
<tr>
|
||
|
<th>Binary</th>
|
||
|
<th>Hexadecimal</th>
|
||
|
<th>Decimal</th>
|
||
|
<th>Cyrillic</th>
|
||
|
<th>Emoji</th>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|