Created
December 27, 2025 14:41
-
-
Save arthurpbarros/8f0e5a6ebd8c177fdd633234821d3eae to your computer and use it in GitHub Desktop.
Esqueleto de páginas HTML semânticas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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>© 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