This repository has been archived by the owner on Dec 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase_converter.html
55 lines (55 loc) · 1.52 KB
/
base_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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!--
/**
* file: base_converter.html
* type: Hyper-Text-Markup-Language
* date: 10_JULY_2023
* author: karbytes
* license: PUBLIC_DOMAIN
*/
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>BASE_CONVERTER</title>
<link rel="stylesheet" href="karbytes_aesthetic.css">
<script src="base_converter_arithmetic.js"></script>
<script src="base_converter_interface.js"></script>
<script src="time_stamp.js"></script>
<style>
.module {
border-radius: 5px;
padding: 10px;
}
.input_step {
background: #8fed77;
color: #000000;
}
.output_step {
background: #b877ed;
color: #000000;
}
#introduction {
background: #ffff00;
color: #000000;
}
#time_stamped_messages {
border-color: #00ff00;
border-width: 1px;
border-style: solid;
}
</style>
</head>
<body onload="initialize_application()">
<h1>BASE_CONVERTER</h1>
<p class="module" id="introduction">
Convert an INPUT_SEQUENCE (i.e. an unsigned integer consisting
of no more than eight digits) whose base is INPUT_BASE to its
equivalent representation as an unsigned integer whose base
is OUTPUT_BASE.
</p>
<div id="input_form"><p>#input_form</p></div>
<div id="output"><p>#output</p></div>
<div class="module console" id="time_stamped_messages"><p>#time_stamped_messages</p></div>
</body>
</html>