Skip to content

Instantly share code, notes, and snippets.

@PatoFlamejanteTV
Last active March 12, 2025 19:05
Show Gist options
  • Save PatoFlamejanteTV/f98e2ca7277c5d99204930583c01a9dc to your computer and use it in GitHub Desktop.
Save PatoFlamejanteTV/f98e2ca7277c5d99204930583c01a9dc to your computer and use it in GitHub Desktop.
Tutorial
<!-- ESTRUTURA DO SITE -->
<h1>👋 Meu site!</h1> <!-- Título -->
<hr> <!-- Divisão -->
<br> <!-- Quebra de linha -->
<button onclick="surpresa()">Clique em mim e veja o que acontece!</button> <!-- Botão -->
// CÓDIGO DO SITE
function surpresa()
// Define uma função, código que pode ser reutilizado no projeto.
{
alert("Olá!");
}
/* ESTILO DO SITE */
h1 /* "Chave" do título */
{
text-align: center; /* define a posição no centro */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment