-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroman-numerals-converter.html
36 lines (33 loc) · 1.17 KB
/
roman-numerals-converter.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Roman numeral converter</title>
<link rel="icon" type="image/x-icon" href="https://donutparty.top/images/donut.ico">
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="styles/basic-layout.css" />
<link rel="stylesheet" href="styles/roman-numerals-converter.css" />
<script src="https://kit.fontawesome.com/c07e0218a9.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1>Roman numeral converter</h1>
</header>
<main>
<h2>This website was created as an exercise project for freeCodeCamp.</h2>
<div id="converter">
<input title="Number to convert" id="number" type="number" />
<button id="convert-btn">Convert</button>
</div>
<div id="output">
None
</div>
</main>
<footer>
<span id="display-mode-button" class="fa-regular fa-sun"></span>
<a href="https://github.com/womzil">Created by womzil</a>
</footer>
<script src="./scripts/darkMode.js"></script>
<script src="./scripts/romanNumeralsConverter.js"></script>
</body>
</html>