-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (56 loc) · 2.37 KB
/
index.html
File metadata and controls
59 lines (56 loc) · 2.37 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevTools Pro</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div>DevTools Pro</div>
</header>
<main>
<label for="app-selector">Choose the type of Converter</label>
<br>
<select name="Choose Converter" id="app-selector">
<option value="" disabled selected>Select Converter</option>
<option value="px-rem">REM ⇄ PX Converter</option>
<option value="base-conv">Decimal ⇄ Binary Converter</option>
<option value="hex-rgb">HEX ⇄ RGB Converter</option>
</select>
<div id="main-box">
<div id="px-rem-converter" class="app-card">
<div id="card-heading">REM ⇄ PX Converter</div>
<input type="text" id="px-value" placeholder="PX Value" class="input-field">
<div class="icon-swap"></div>
<input type="text" id="rem-value" placeholder="REM Value" class="input-field">
</div>
<div id="base-converter" class="app-card">
<div id="card-heading">Decimal ⇄ Binary Converter</div>
<input type="text" id="dec-value" placeholder="Decimal Value" class="input-field">
<div class="icon-swap"></div>
<input type="text" id="bin-value" placeholder="Binary Value" class="input-field">
</div>
<div id="hex-rgb-converter" class="app-card">
<div id="card-heading">HEX ⇄ RGB Converter</div>
<input type="text" id="hex-value" placeholder="HEX Value" class="input-field">
<div class="icon-swap"></div>
<input type="text" id="rgb-value" placeholder="RGB Value" class="input-field">
</div>
</div>
</main>
<footer>
<div class="footer-content">
<p>Built by skullxcode</p>
<div class="footer-links">
<a href="https://github.com/skullxcode" target="_blank">GitHub</a>
<span class="separator">|</span>
<a href="https://linkedin.com/in/ujjwal-jain-" target="_blank">LinkedIn</a>
</div>
<p class="copyright">© 2026 DevTools Pro</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>