Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 42 additions & 25 deletions exercicios/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,56 @@
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exercícios de HTML5 e CSS3</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<header>
<h1>Exercícios de HTML5 e CSS3</h1>
<aside>
<a href="https://github.com/gustavoguanabara/html-css/tree/master/exercicios" target="_blank"><img src="https://gustavoguanabara.github.io/html-css/imagens/vscode-icon.png" alt="Visual Studio Code"></a>
<p>Quer ter acesso aos códigos-fonte dos exercícios a seguir? Acesse a <a href="https://github.com/gustavoguanabara/html-css/tree/master/exercicios" target="_blank">área do repositório com todas as pastas e arquivos</a> para cada exercício.</p>
</aside>
</header>

<aside>
<a href="https://github.com/gustavoguanabara/html-css/tree/master/aulas-pdf" target="_blank"><img src="https://gustavoguanabara.github.io/html-css/imagens/pdf-icon.png" alt="Material em PDF"></a>
<p>Temos ainda algumas apostilas para a complementação do aprendizado. Para acessá-las, vá até a <a href="https://github.com/gustavoguanabara/html-css/tree/master/aulas-pdf" target="_blank">área do repositório com os arquivos PDF</a> com o material escrito.</p>
</aside>
<h2>&#x1F4C1; Módulo 01: Primeiros Passos</h2>
<nav aria-label="Recursos">
<ul>
<li><a href="modulo-01/ex001/index.html">Um HTML simples</a></li>
<li><a href="modulo-01/ex002/index.html">Parágrafos, quebras e emojis</a></li>
<li><a href="modulo-01/ex003/index.html">Inserindo imagens simples</a></li>
<li><a href="modulo-01/ex004/index.html">Utilizando favicons</a></li>
<li><a href="modulo-01/ex006/index.html">Hierarquia de títulos</a></li>
<li><a href="modulo-01/ex007/index.html">Formatações de textos em HTML5</a></li>
<li><a href="modulo-01/ex008/index.html">Formatações de códigos, citações e abreviações.</a></li>
<li><a href="modulo-01/ex009/index.html">Listas em HTML5</a></li>
<li><a href="modulo-01/ex010/index.html">Links internos, externos e de downloads</a></li>
<li><a href="modulo-01/ex011/index.html">Imagens dinâmicas e áudio</a></li>
<li><a href="modulo-01/ex012/index.html">Vídeos em HTML5</a></li>
<li><a href="modulo-01/ex013/index.html">Usando estilos in-line</a></li>
<li><a href="modulo-01/ex014/index.html">Usando estilos internos</a></li>
<li><a href="modulo-01/ex015/index.html">Usando estilos externos</a></li>
<li>
<a href="https://github.com/gustavoguanabara/html-css/tree/master/exercicios" target="_blank" rel="noopener noreferrer">
<img src="https://gustavoguanabara.github.io/html-css/imagens/vscode-icon.png" alt="Ícone do Visual Studio Code">
Códigos-fonte dos exercícios
</a>
</li>
<li>
<a href="https://github.com/gustavoguanabara/html-css/tree/master/aulas-pdf" target="_blank" rel="noopener noreferrer">
<img src="https://gustavoguanabara.github.io/html-css/imagens/pdf-icon.png" alt="Ícone de PDF">
Apostilas em PDF
</a>
</li>
</ul>
</nav>

<main>
<section aria-labelledby="modulo1-title">
<h2 id="modulo1-title">&#x1F4C1; Módulo 01: Primeiros Passos</h2>
<ul>
<li><a href="modulo-01/ex001/index.html">Um HTML simples</a></li>
<li><a href="modulo-01/ex002/index.html">Parágrafos, quebras e emojis</a></li>
<li><a href="modulo-01/ex003/index.html">Inserindo imagens simples</a></li>
<li><a href="modulo-01/ex004/index.html">Utilizando favicons</a></li>
<li><a href="modulo-01/ex006/index.html">Hierarquia de títulos</a></li>
<li><a href="modulo-01/ex007/index.html">Formatações de textos em HTML5</a></li>
<li><a href="modulo-01/ex008/index.html">Formatações de códigos, citações e abreviações.</a></li>
<li><a href="modulo-01/ex009/index.html">Listas em HTML5</a></li>
<li><a href="modulo-01/ex010/index.html">Links internos, externos e de downloads</a></li>
<li><a href="modulo-01/ex011/index.html">Imagens dinâmicas e áudio</a></li>
<li><a href="modulo-01/ex012/index.html">Vídeos em HTML5</a></li>
<li><a href="modulo-01/ex013/index.html">Usando estilos in-line</a></li>
<li><a href="modulo-01/ex014/index.html">Usando estilos internos</a></li>
<li><a href="modulo-01/ex015/index.html">Usando estilos externos</a></li>
</ul>
</section>
</main>

<footer>
<p>&copy; 2025 Curso de HTML5 e CSS3 - Gustavo Guanabara</p>
</footer>
</body>
</html>