-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.29 KB
/
index.html
File metadata and controls
37 lines (35 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="js/jquery-3.6.4.js"></script>
<script src="js/script.js"></script>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="img/logo.png">
<title>Roman Numeral Converter</title>
</head>
<body>
<div class="container">
<div class="background">
<img src="img/istockphoto-1368203696-612x612.jpg" alt="">
</div>
<div class="converter">
<h1 class="header">Roman Numeral Converter</h1>
<form id="formOne">
<div class="form-group">
<label for="Number">Enter a number within the range (1-3999) to convert to roman numeral:</label>
<!-- <p class="small">(Ensure the number is within the range : 1-3999)</p> -->
<input type="number" id="Number" class="form-control w-75">
</div>
<div>
<button class="btn btn-fancy" type="submit">Convert</button>
</div>
</form>
<div id="output" class="mt-5">
</div>
</div>
</div>
</body>
</html>