Skip to content

Instantly share code, notes, and snippets.

@arthurpbarros
Created December 27, 2025 14:41
Show Gist options
  • Select an option

  • Save arthurpbarros/8f0e5a6ebd8c177fdd633234821d3eae to your computer and use it in GitHub Desktop.

Select an option

Save arthurpbarros/8f0e5a6ebd8c177fdd633234821d3eae to your computer and use it in GitHub Desktop.
Esqueleto de páginas HTML semânticas
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meu Site</title>
<!-- <link rel="stylesheet" href="styles.css"> -->
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<link href="css/estilo.css" rel="stylesheet">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#inicio">Início</a></li>
<li><a href="#sobre">Sobre</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</nav>
</header>
<main>
<section id="inicio">
<h1>Bem-vindo</h1>
<p>Conteúdo principal do site.</p>
</section>
<section id="sobre">
<h2>Sobre</h2>
<article>
<p>Informações sobre o site ou autor.</p>
</article>
</section>
</main>
<footer>
<p>&copy; 2024 Todos os direitos reservados.</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment