Created
July 2, 2024 16:53
-
-
Save CodeAkinori/849612ceed08a8a72d051d729ea321ea to your computer and use it in GitHub Desktop.
GIst
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>Containers</title> | |
| <link rel="stylesheet" type="text/css" href="./style.css"> | |
| </head> | |
| <body> | |
| <header> | |
| <div class="container"> | |
| <h1>Portal de notícias</h1> | |
| <nav> | |
| <ul> | |
| <li><a href="#sports" title="Ir para a seção de esportes">Esportes</a></li> | |
| <li><a href="#economy" title="Ir para a seção de Economia">Economia</a></li> | |
| <li><a href="#entertainment" title="Ir para a seção de Entretenimento">Entretenimento</a></li> | |
| <li><a href="#technology" title="Ir para a seção de Tecnologia">Tecnologia</a></li> | |
| </ul> | |
| </nav> | |
| </div> | |
| </header> | |
| <main> | |
| <section id="sports"> | |
| <div class="container"> | |
| <h2>Esportes</h2> | |
| <div class="articles"> | |
| <article> | |
| <img src="./media/107452611-inglewood-california-june-24-dorival-junior-head-coach-of-brazil-gestures-during-the-con.avif" alt="Bola de futebol"> | |
| <header> | |
| <time class="creation date">25/06/2024 às 10:07</time> | |
| </header> | |
| <h3>Tropeço na estreia</h3> | |
| <p>Brasil empata contra Costa Rica na estreia da Copa América em 0x0</p> | |
| <a href="#" title="Leia a notícia completa">Ler mais</a> | |
| </article> | |
| <article> | |
| <img src="./media/17192642479657.jpg" alt="gol da Itália"> | |
| <header> | |
| <time class="creation date">25/06/2024 às 11:10</time> | |
| </header> | |
| <h3>Itália empata com a Croácia no fim e avança</h3> | |
| <p>Itália sofreu, até saiu atrás no placar, mas buscou empatar no fim e está classificada.</p> | |
| <a href="#" title="Leia a notícia completa">Ler mais</a> | |
| </article> | |
| </div> | |
| </div> | |
| </section> | |
| <section id="economy"> | |
| <div class="container"> | |
| <h2>Economia</h2> | |
| <div class="articles"> | |
| <article> | |
| <img src="./media/download.jpg" alt="carteira de trabalho"> | |
| <header> | |
| <time class="creation date">25/06/2024 às 11:19</time> | |
| </header> | |
| <h3>Desemprego diminui em 1%</h3> | |
| <p>A taxa de desemprego do país no primeiro trimestre de 2024 foi de 7,9%.</p> | |
| <a href="#" title="Leia a notícia completa">Ler mais</a> | |
| </article> | |
| <article> | |
| <img src="./media/volantes-loterias-q98a7776-credito-marcelo-brandt-g1.webp" alt="jogo da mega-sena"> | |
| <header> | |
| <time class="creation date">25/06/2024 às 11:19</time> | |
| </header> | |
| <h3>Mega-Sena pode pagar R$ 93 milhões nesta terça-feira</h3> | |
| <p>As apostas podem ser feitas até as 19h em lotéricas ou pela internet.</p> | |
| <a href="#" title="Leia a notícia completa">Ler mais</a> | |
| </article> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <aside> | |
| conteúdo | |
| </aside> | |
| <footer> | |
| ©2024 - Todos os direitos reservados | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment