-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1002 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
<!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>Online base convertor</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" async></script>
</head>
<body>
<h1 class="welcom">Welcom to Online Base Convertor</h1>
<section class="convertor_container">
<h1>decimal</h1>
<input type="text" class="dec">
<h1 style="display: inline-block;">Hexadecimal</h1>
<h1 style="display: inline-block; margin-left: 20%; ">Octal</h1>
<div class="flex">
<input type="text" class="hex online" >
<input type="text" class=" oct online" style="margin-right: -4%;">
</div>
<h1>Binaire</h1>
<input type="text" class="bin">
<a href="#" class="author">By IROPA Zakarie</a>
</section>
</body>
</html>