Skip to content

Commit 8f8730a

Browse files
committed
adding
1 parent 96ba645 commit 8f8730a

File tree

5 files changed

+125
-568
lines changed

5 files changed

+125
-568
lines changed

Diff for: README.md

-1
This file was deleted.

Diff for: index.html

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
5+
<title>Decimal-Binary Converter</title>
6+
<!-- Google Fonts -->
7+
<link
8+
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"
9+
rel="stylesheet"
10+
/>
11+
<!-- Stylesheet -->
12+
<link rel="stylesheet" href="style.css" />
13+
</head>
14+
<body>
15+
<div class="container">
16+
<h2>Decimal Binary Converter</h2>
17+
<div class="wrapper">
18+
<div class="input-wrapper">
19+
<label for="dec-inp">Decimal:</label>
20+
<input type="number" id="dec-inp" />
21+
</div>
22+
<div class="input-wrapper">
23+
<label for="bin-inp">Binary:</label>
24+
<input type="number" id="bin-inp" />
25+
</div>
26+
</div>
27+
<p id="error-msg"></p>
28+
</div>
29+
<!-- Script -->
30+
<script src="script.js"></script>
31+
</body>
32+
</html>

0 commit comments

Comments
 (0)