-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1007 Bytes
/
index.html
File metadata and controls
36 lines (33 loc) · 1007 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
36
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elas@Conectam</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<button id="toggle-sidebar-btn" class="toggle-btn">
☰
</button>
</header>
<div class="main-container">
<aside id="sidebar" class="sidebar">
<nav>
<ul>
<li><a href="#" data-page="grafo_interesses">Home</a></li>
<li><a href="#" data-page="sorteio">Sorteio</a></li>
</ul>
</nav>
</aside>
<main class="content">
<div id="dynamic-content-area">
<h2>Carregando conteúdo...</h2>
<p>Aguarde enquanto o conteúdo dinâmico é carregado.</p>
</div>
</main>
</div>
<script src="script.js"></script>
</body>
</html>