-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 1.48 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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="stylesheet" href="style.css">
<title>Teste De Programação De Interface - WEB</title>
</head>
<body>
<header><p><h3>Gerando uma Matriz</h3></p></header>
<div id="campo">
<div id="linha">
<p>Linhas: <input type="text" name="linhas" id="linhas"></p>
</div>
<div id="coluna">
<p>Colunas: <input type="text" name="colunas" id="colunas"></p>
</div>
<div id="gerar"><button>Gerar</button></div><span id="resetar"><button>Resetar</button></span>
</div>
<div id="campoDestacar">
<input type="checkbox" name="destacar" id="destacar"><span> Destacar diagonais</span>
</div>
<div id="destaqueDiagonal">
<p>Informe abaixo as <strong>cores</strong> das diagonais:</p>
<div id="cores">
<div><span>Principal: </span><input type="color" name="principal" id="principal"></div>
<div><span>Secundária: </span><input type="color" name="secundaria" id="secundaria"><span><button type="submit" id="confirmarCor">OK</button></span></div>
</div>
</div>
<div id="matriz">
<table>
<tbody id="tbody">
</tbody>
</table>
</div>
<script src="script.js"></script>
</body>
</html>