-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1020 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="js/scripts.js" charset="utf-8"></script>
<meta charset="utf-8">
<title>Roman Numeral</title>
</head>
<body>
<div class="container">
<h2>Roman Numeral Translator</h2>
<div class="form-group">
<label for="userInput">Input your number:</label>
<input id="userInput" name="userInput" class="form-control">
<button id="submit" class="btn btn-success">Submit</button>
</div>
<div>
<h3>Output:</h3>
<p id="results"></p>
</div>
</div>
</body>
</html>