Skip to content

Commit 72461f2

Browse files
authored
Create converter.html
1 parent 5ed93a3 commit 72461f2

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
6+
<!-- GooglE fonts -->
7+
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
8+
<link rel="stylesheet" href="style.css">
9+
<title>Roman Numeral Conversion</title>
10+
</head>
11+
<body>
12+
<div class="main">
13+
<h1>ROMAN NUMERAL CONVERTER</h1>
14+
<!-- arbic input -->
15+
<input id="arabicInput" type="text" name="arabic" placeholder="Enter an arabic number....">
16+
<!-- roman input -->
17+
<input id="romanInput" type="text" name="roma" value="" placeholder="Enter a roman number....">
18+
</div>
19+
<div style="margin-top: 40px;text-align:center;font-size:20px;">
20+
<div class="made-with">
21+
<h4 class="color" style="color:white;font-family: cursive;">Made with ❤️ by <a href="https://github.com/AdishiSood" style="color:white;font-family: cursive;">Adishi Sood</a></h4>
22+
</div>
23+
<div style="color:white; font-family: cursive;">Connect with me:</div>
24+
<br>
25+
<div class="social-icons">
26+
<a href="https://github.com/AdishiSood" target="_blank">
27+
<i class="fa fa-github" style="font-size:30px; color:white"></i>
28+
</a>
29+
<a href="https://twitter.com/Adishi11" target="_blank">
30+
<i class="fa fa-twitter" style="font-size:30px; color:white"></i>
31+
</a>
32+
<a href="https://www.linkedin.com/in/adishisood/" target="_blank">
33+
<i class="fa fa-linkedin" style="font-size:30px; color:white"></i>
34+
</a>
35+
</div>
36+
</div>
37+
<script type="text/javascript" src="script.js">
38+
</script>
39+
</body>
40+
</html>

0 commit comments

Comments
 (0)