Breve descrição do projeto: o que é, qual problema resolve e por que é útil.
- -
Exemplo: Em desenvolvimento | Concluído | Em manutenção
| <!-- Referência para wallace fazer os botões de redes sociais no seu footer do projeto freete --> | |
| <!DOCTYPE html> | |
| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Botão com Redirecionamento</title> | |
| <style> | |
| /* Estilo do Botão em CSS */ | |
| .meu-botao { |
| // ============================================ | |
| // MÓDULO 4 — Validação de formulário com JavaScript | |
| // Objetivo didático: mostrar como o JS reage a eventos | |
| // do usuário e dá feedback SEM recarregar a página. | |
| // ============================================ | |
| const form = document.getElementById("buy-form"); | |
| const nomeInput = document.getElementById("nome"); | |
| const emailInput = document.getElementById("email"); | |
| const erroNome = document.getElementById("erro-nome"); |
| :root { | |
| --pitch: #1B3B2F; | |
| --turf: #3F7A5C; | |
| --chalk: #F3F1E7; | |
| --floodlight: #F4A73B; | |
| --ink: #10201A; | |
| --steel: #8C9A93; | |
| --error: #C24A42; | |
| --font-display: 'Oswald', sans-serif; |
| <!DOCTYPE html> | |
| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Golada — o copo que sobreviveu à Copa</title> | |
| <meta name="description" content="Copo Golada, edição Copa 2026. Cerâmica resistente, estampa que não desbota, entrega rápida."> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link href="https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Work+Sans:wght@400;500&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="style.css"> |
| :root { | |
| --pitch: #1B3B2F; | |
| --turf: #3F7A5C; | |
| --chalk: #F3F1E7; | |
| --floodlight: #F4A73B; | |
| --ink: #10201A; | |
| --steel: #8C9A93; | |
| --font-display: 'Oswald', sans-serif; | |
| --font-body: 'Work Sans', sans-serif; |
| <!DOCTYPE html> | |
| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Golada — o copo que combina com o jogo</title> | |
| <meta name="description" | |
| content="Copo Matchday Golada, edição Copa 2026. Cerâmica resistente, estampa que não desbota, entrega rápida."> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> |
| body { | |
| font-family: Arial, sans-serif; | |
| margin: 0; | |
| padding: 0; | |
| line-height: 1.6; | |
| } | |
| header { | |
| background-color: #f2f2f2; | |
| text-align: center; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Seu Nome - Síndico Profissional</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <header> |
| body { | |
| font-family: Arial, sans-serif; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| header { | |
| background-color: #f2f2f2; | |
| text-align: center; | |
| padding: 20px; |