-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTabela.html
60 lines (58 loc) · 1.5 KB
/
Tabela.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
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css.css">
<title></title>
</head>
<body class="backgroundBody">
<div class="bgPrincipal">
<br><h1>ATIVIDADE DE JAVASCRIPT</h1><br>
<a href="Calculadora.html"><button id="btnOpcCalc">Calculadora</button></a>
<a href="Cursos.html"><button id="btnOpcCurso">Cursos</button></a>
<a href="Tabela.html"><button id="btnOpcTable">Tabela</button></a>
<div class="bgPrincipalTabela">
<div class="panelPrincipalTabela">
<h2>CLIENTES</h2>
<div class="titulosTable">
<table>
<tr>
<th><h2>Nome</h2></th>
<th><h2>Telefone</h2></th>
<th><h2>Email</h2></th>
<th><h2>Endereco</h2></th>
</tr>
<tr>
<td>Vader</td>
<td>1111-1111</td>
<td>[email protected]</td>
<td>Tatooine</td>
</tr>
<tr>
<td>Leia</td>
<td>2222-2222</td>
<td>[email protected]</td>
<td>Alderaan</td>
</tr>
<tr>
<td>Padmé</td>
<td>3333-3333</td>
<td>[email protected]</td>
<td>Naboo</td>
</tr>
</table><br>
</div>
<div class="titulosFooter">
<button>Exportar</button>
</div>
<div class="panelFooter">
<h2>RESULTADO</h2>
<textarea id="txtArea">
</textarea>
</div>
</div>
</div>
<p id="desenvolvido"> Sistema desenvolvido por Mateus Inocentini - 2018.
</div>
</body>
</html>