|
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | 5 | <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> |
10 | 7 | <link rel="stylesheet" href="style.css"> |
11 | 8 | </head> |
12 | 9 | <body> |
|
17 | 14 | <li><a href="index.html">Início</a></li> |
18 | 15 | <li><a href="aulas.html">Aulas</a></li> |
19 | 16 | <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> |
20 | 18 | </ul> |
21 | 19 | </nav> |
22 | 20 |
|
23 | 21 | <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> |
26 | 24 | </header> |
27 | 25 |
|
28 | 26 | <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> |
30 | 34 |
|
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> |
49 | 41 | </div> |
50 | 42 | </section> |
| 43 | + |
51 | 44 | </main> |
52 | 45 |
|
| 46 | + <footer style="text-align: center; padding: 40px; opacity: 0.7; font-size: 0.8rem;"> |
| 47 | + © 2026 JS Master - Prof. Bernardo |
| 48 | + </footer> |
| 49 | + |
53 | 50 | <script src="script.js"></script> |
54 | 51 | </body> |
55 | 52 | </html> |
0 commit comments