-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 2.12 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<title>Roman Numeral Converter</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="roman numeral converter for freeCodeCamp javascript algorithms and data structures certificate" />
<meta name="keywords"
content="freeCodeCamp, roman numeral converter, bulma css, vite, javascript algorithms and data structures" />
<meta name="author" content="Josue" />
<!-- stylesheet -->
<link rel="stylesheet" href="mystyles.css" />
</head>
<body>
<main class="hero is-fullheight">
<!-- header start -->
<header class="hero-head has-background-danger">
<div class="container has-text-centered py-6">
<h1 class="title has-text-white has-text-weight-bold is-size-2 is-size-4-mobile">Roman Numeral Converter</h1>
<p class="subtitle has-text-weight-semibold is-size-6-mobile">Input an Arabic numeral to convert it to a Roman
numeral</p>
</div>
</header>
<!-- header end -->
<div class="hero-body is-flex is-flex-direction-column is-align-items-center">
<h2 class="title has-text-weight-bold is-size-4-mobile mb-6">Reference Table</h2>
<!-- table start -->
<div class="table-container">
<table class="table is-bordered">
<tbody id="arabicData" class="has-text-centered"></tbody>
</table>
</div>
<!-- table end -->
<div class="container is-flex is-flex-direction-column">
<!-- input start -->
<div class="is-flex mt-5">
<input type="text" class="input is-danger is-medium mr-5" autofocus>
<button class="button is-danger is-outlined is-medium">Submit</button>
</div>
<!-- input end -->
<!-- output start -->
<div class="has-text-centered mt-6">
<h2 id="output" class="title has-text-weight-bold is-size-4-mobile">Arabic to Roman</h2>
</div>
<!-- output end -->
</div>
</div>
</main>
<script type="module" src="/main.js"></script>
</body>
</html>