adding the html file
parent
af7c386466
commit
3a0ae4bf75
@ -0,0 +1,36 @@
|
||||
<!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>
|
Loading…
Reference in New Issue