Skip to content

Instantly share code, notes, and snippets.

@rudineiw
Last active March 21, 2024 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rudineiw/98993d24026fe765a1f5ca01bbb85476 to your computer and use it in GitHub Desktop.
Save rudineiw/98993d24026fe765a1f5ca01bbb85476 to your computer and use it in GitHub Desktop.
Basic page html5 template for tutorial on https://webdesigngrafico.com.br/template-html5-basico/
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minha Página</title>
<!-- Adicione aqui seus links para folhas de estilo (CSS) -->
</head>
<body>
<!-- Cabeçalho da Página -->
<header>
<h1>Meu Site</h1>
<nav>
<ul>
<li><a href="#">Página Inicial</a></li>
<li><a href="#">Sobre</a></li>
<li><a href="#">Contato</a></li>
</ul>
</nav>
</header>
<!-- Conteúdo Principal -->
<main>
<section>
<h2>Bem-vindo ao Meu Site</h2>
<p>Este é um parágrafo introdutório.</p>
</section>
<section>
<h2>Últimas Notícias</h2>
<article>
<h3>Título da Notícia 1</h3>
<p>Conteúdo da notícia 1...</p>
</article>
<article>
<h3>Título da Notícia 2</h3>
<p>Conteúdo da notícia 2...</p>
</article>
</section>
</main>
<!-- Rodapé da Página -->
<footer>
<p>© 2023 Meu Site. Todos os direitos reservados.</p>
</footer>
<!-- Adicione aqui seus scripts JavaScript -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment