File tree 5 files changed +125
-568
lines changed
5 files changed +125
-568
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments