-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.88 KB
/
Copy pathindex.html
File metadata and controls
43 lines (40 loc) · 1.88 KB
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
<!DOCTYPE html>
<html lang="pt-br"> <!-- Declares the document language as Brazilian Portuguese -->
<head>
<meta charset="UTF-8"> <!-- Ensures proper character encoding -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Makes layout responsive on mobile devices -->
<title>R.D.O Digital - 12/02/26</title> <!-- Page title shown in browser tab -->
<link rel="stylesheet" href="style.css"> <!-- External CSS file for styling -->
</head>
<body>
<div class="container"> <!-- Main container for page layout -->
<header>
<h1>🚧 R.D.O - 12/02/26 (Quinta-Feira)</h1> <!-- Main header with date and day -->
<div class="search-container">
<!-- Search input to filter table content dynamically -->
<input type="text" id="inputBusca" placeholder="🔍 Buscar por nome, função ou atividade..." onkeyup="filtrarRDO()">
</div>
</header>
<div class="table-wrapper"> <!-- Wrapper for table to allow styling and scrolling -->
<table>
<thead>
<tr>
<!-- Table headers for daily report -->
<th>Função / Nome</th>
<th>Atividade Matutino</th>
<th>Status Mat</th>
<th>Atividade Vespertino</th>
<th>Clima Manhã</th>
<th>Clima Tarde</th>
</tr>
</thead>
<tbody id="tabelaCorpo">
<!-- Table body will be populated dynamically via JavaScript -->
</tbody>
</table>
</div>
</div>
<!-- External JavaScript file controlling logic (filtering, dynamic table population) -->
<script src="./index.js"></script>
</body>
</html>