-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (33 loc) · 1.04 KB
/
index.html
File metadata and controls
41 lines (33 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<title>Convertify</title>
</head>
<body>
<div class="container">
<h1>Convertify</h1>
<select id="format">
<option value="binary">Binary</option>
<option value="hex">Hex</option>
</select>
<select id="type">
<option value="encode">Encode</option>
<option value="decode">Decode</option>
</select>
<form onsubmit="return false">
<label for="input-box">Input</label>
<textarea id="input-box" placeholder="Enter text..."></textarea>
<hr>
<label for="output-box">Output</label>
<textarea id="output-box" placeholder="Result..." readonly></textarea>
</form>
<button id="copy">Copy Output</button>
<button class="convert-btn" id="convert-btn">Convert</button>
<footer>© Convertify 2025</footer>
</div>
<script src="js/index.js"></script>
</body>
</html>