-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.14 KB
/
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
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Base Conversor</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="group">
<h2>Conversor de Base</h2>
<form action="">
<label for="numero" >
<input type="text" id="numero" placeholder="Digite um número:" required>
</label>
<p>Escolha a base digitada:</p>
<select id="base">
<option value="2">Binária</option>
<option value="8">Octal</option>
<option value="10">Decimal</option>
<option value="16">Hexadecimal</option>
</select>
</form>
</div>
<div class="group hidden">
<h2>Resultados</h2>
<div class="base2">
</div>
<div class="base8">
</div>
<div class="base10">
</div>
<div class="base16">
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>