Skip to content

Commit 8c23f63

Browse files
Update praticas.html
1 parent ab83d1c commit 8c23f63

1 file changed

Lines changed: 22 additions & 25 deletions

File tree

praticas.html

Lines changed: 22 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Laboratório - JS Master</title>
7-
<link rel="preconnect" href="https://fonts.googleapis.com">
8-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9-
<link href="https://fonts.googleapis.com/css2?family=Playwrite+IE+Sj:wght@100..400&display=swap" rel="stylesheet">
6+
<title>Laboratório JS - Prof. Bernardo</title>
107
<link rel="stylesheet" href="style.css">
118
</head>
129
<body>
@@ -17,39 +14,39 @@
1714
<li><a href="index.html">Início</a></li>
1815
<li><a href="aulas.html">Aulas</a></li>
1916
<li><a href="praticas.html">Práticas</a></li>
17+
<li><a href="https://discord.com/channels/1499755355570176081/1499755770991083570" target="_blank" class="btn-comunidade">Comunidade</a></li>
2018
</ul>
2119
</nav>
2220

2321
<header class="hero">
24-
<h1>Laboratório <span>Interativo</span></h1>
25-
<p>Escolha um desafio para abrir o editor de código abaixo.</p>
22+
<h1 style="font-family: 'Alfa Slab One', cursive;">Laboratório <span>Prático</span></h1>
23+
<p>Escolha um desafio abaixo para abrir o editor de código.</p>
2624
</header>
2725

2826
<main class="container">
29-
<div id="tutorial-texto"></div>
27+
28+
<div id="tutorial-texto">
29+
<div class="card" style="text-align: center;">
30+
<h3>Aguardando seleção...</h3>
31+
<p>Clique em um dos botões abaixo para começar a programar.</p>
32+
</div>
33+
</div>
3034

31-
<section class="aulas-grid">
32-
<h2 style="margin-bottom: 25px; font-family: 'Playwrite IE Sj', cursive;">Desafios Disponíveis</h2>
33-
<div class="cards-container">
34-
<div class="card">
35-
<span class="badge">Nível 1</span>
36-
<h3>Variáveis</h3>
37-
<button onclick="verAula(1)" class="btn-lesson">Abrir Laboratório</button>
38-
</div>
39-
<div class="card">
40-
<span class="badge">Nível 2</span>
41-
<h3>Funções</h3>
42-
<button onclick="verAula(2)" class="btn-lesson">Abrir Laboratório</button>
43-
</div>
44-
<div class="card">
45-
<span class="badge">Nível 3</span>
46-
<h3>Lógica</h3>
47-
<button onclick="verAula(3)" class="btn-lesson">Abrir Laboratório</button>
48-
</div>
35+
<section class="card" style="margin-top: 30px;">
36+
<h2 style="margin-bottom: 20px;">Desafios Disponíveis</h2>
37+
<div style="display: flex; gap: 15px; flex-wrap: wrap;">
38+
<button onclick="verAula(1)" class="btn-lesson">Nível 1: Variáveis</button>
39+
<button onclick="verAula(2)" class="btn-lesson">Nível 2: Funções</button>
40+
<button onclick="verAula(3)" class="btn-lesson">Nível 3: Condicionais</button>
4941
</div>
5042
</section>
43+
5144
</main>
5245

46+
<footer style="text-align: center; padding: 40px; opacity: 0.7; font-size: 0.8rem;">
47+
&copy; 2026 JS Master - Prof. Bernardo
48+
</footer>
49+
5350
<script src="script.js"></script>
5451
</body>
5552
</html>

0 commit comments

Comments
 (0)