-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (30 loc) · 951 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
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>ANCIENT CONVERTER</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- google fonts -->
<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=Rubik+Microbe&display=swap" rel="stylesheet">
<!-- end - google fonts -->
</head>
<body>
<h1>ANCIENT CONVERTER</h1>
<form id="convertion-form">
<label for="Number">Enter Digital or Roman</label>
<input type="text" id="user-input" placeholder="LXII">
<input type="submit" id="submit" value="Rabbit!">
</form>
</section>
<section class="outputSection">
<p>Result</p>
<div id="resultContainer">
<p id="output">0 Rabbits</p>
</div>
</section>
<script src="script.js"></script>
</body>
</html>