-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.65 KB
/
Copy pathindex.html
File metadata and controls
35 lines (35 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Real time decimal-to-Roman converter</title>
<meta name="description" content="A straightforward real time decimal-to-Roman converter built using HTML, CSS and JavaScript.">
<link rel="icon" type="image/png" href="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/microsoft/209/classical-building_1f3db.png"/>
<link rel="stylesheet" href="./main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<div id="main-box">
<div id="header-box">
<h1 id="title">Real time <span id="decimal">decimal</span>-to-<span id="roman">Roman</span> converter</h1>
<a id="github-link" href="https://github.com/ivanarena"><img id="github-logo" src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="github-logo"></a>
</div>
<div id="flex-box">
<div id="decimal-box">
<input type="decimal-input" placeholder="Insert a decimal number" id="decimal-input" />
</div>
<div id="text-box">
<p id="text">to Roman is</p>
</div>
<div id="roman-box">
<p id="roman-output"></p>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>