Exemplo de HTML:
<!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="UTF-8"> <title>Meu Site Estático</title> </head> <body> <h1>Olá, Mundo!</h1> <p>Este é um exemplo de página HTML estática.</p> </body> </html>
Exemplo de CSS:
body { background-color: #f0f0f0; font-family: Arial, sans-serif; } h1 { color: blue; text-align: center; }
Exemplo de JavaScript:
document.addEventListener("DOMContentLoaded", function() { alert("Bem-vindo ao site de programação estática!"); });