-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 1003 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roman Numeral Converter</title>
<script src="functionality.js" type="module"></script>
<script src="https://kit.fontawesome.com/051bb2f8c7.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Roman Numeral Converter</h1>
<form action="">
<input type="textfield" autocomplete="off" id="textfield">
<input type="button" value="Convert" id="submitBtn">
</form>
<h2 id="showScreen"></h2>
<ul>
<li>The number must be between 1-3999</li>
<li>Only numbers will be accepted</li>
<li>4000 or more will show undesirable output</li>
</ul>
<footer>
<p>Created by Gabriel Trujillo/DeikuModder</p>
<a href="https://github.com/DeikuModder"><i class="fa-brands fa-github "></i></a>
</footer>
</body>
</html>