Bem-vindo ao Meu Site!

Este é um exemplo de página no Neocities.

Sobre Mim

Eu sou um desenvolvedor web apaixonado por criar coisas legais.

Projetos

/* Resetando estilos */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; background-color: #f4f4f4; color: #333; line-height: 1.6; } header { background-color: #333; color: #fff; text-align: center; padding: 20px 0; } header h1 { font-size: 2.5rem; } header p { font-size: 1.2rem; } main { padding: 20px; max-width: 900px; margin: 0 auto; } h2 { font-size: 2rem; margin-bottom: 10px; } ul { list-style-type: none; } ul li { margin: 10px 0; } a { color: #007BFF; text-decoration: none; } a:hover { text-decoration: underline; } button { background-color: #007BFF; color: white; border: none; padding: 10px 20px; font-size: 1rem; cursor: pointer; margin-top: 20px; } button:hover { background-color: #0056b3; } document.getElementById('changeColorBtn').addEventListener('click', function() { document.body.style.backgroundColor = document.body.style.backgroundColor === 'lightblue' ? '#f4f4f4' : 'lightblue'; });