-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 697 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (32 loc) · 697 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Desafio Ntm</title>
<link rel="stylesheet" type="text/css" href="public/styles.css"/>
<script src="public/main.js"></script>
</head>
<body>
<div id="divTitle">
<h1>Desafio Ntm</h1>
</div>
<div id="divCenter">
<div class="divWidth" id="tablehead">
<table class="divWidth">
<thead>
<tr id="trHead">
<th id="thHead">Linhas</th>
</tr>
</thead>
</table>
</div>
<div id="container">
<div id="scroll"></div>
<table id="table">
<tbody id="tbody"></tbody>
</table>
</div>
<div id="debug"></div>
</div>
</body>
</html>