-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 1.07 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
46
47
48
49
50
51
52
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/main.css">
<title>Huffman</title>
</head>
<body>
<header class="principal">
<main>
<div class="menu">
<img class="arvore" src="./img/tree.png">
<img class="univem" src="./img/univem.png">
<div class="nome">Árvore de Huffman</div>
</div>
</main>
</header>
<form name="form" action="">
<div class="frase">
<input placeholder="Digite a frase..." type="text" name="texto" size="100" />
</div>
<div class="botao">
<a>Executar</a>
</div>
<div class="codificado">
Código:
<input type="text" id="cod" size="100" readonly />
</div>
<div class="decodificado">
Frase:
<input type="text" id="dcod" size="100" readonly />
</div>
<div class="tabela">
<table id="tb">
<tr>
<th>Código</th>
<th>String</th>
</tr>
<tr>
<td>null</td>
<td>null</td>
</tr>
</table>
</div>
</form>
<script src="main.js">
</script>
</body>
</html>