Skip to content

Commit

Permalink
Começando a prova do 2 bimestre
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitoria-Freire committed Feb 2, 2025
1 parent f1df5c9 commit 21f0135
Show file tree
Hide file tree
Showing 11 changed files with 95 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bimestre2/chaAconchegante/imagens/img-donut.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions bimestre2/chaAconchegante/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Tea Cozy</title>
</head>
<body>
<header>
<nav>
<img src="/bimestre2/chaAconchegante/imagens/img-tea-cozy-logo.png" alt="logo" class="logo">
<ul class="nav-lista">
<li>Mission</li>
<li>Featured Tea</li>
<li>Locations</li>
</ul>
</nav>
</header>
<main>
<section>
<article class="um">
<img src="/bimestre2/chaAconchegante/imagens/img-mission-background.webp" alt="" class="foto1">
<article class="frase">
<h2>Our Mission</h2>
<h4>Handpicked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</article>
</article>
<article>
<h3>Tea of the Month</h3>
<p>What's Steeping at The Tea Cozy?</p>
</article>
<article>

</article>
</section>
</main>
<footer>
<section class="infos">
<h1>The Tea Cozy</h1>
<h5>[email protected]</h5>
<p>917-555-8904</p>
</section>
<p>copyright The Tea Cozy 2017</p>
</footer>
</body>
</html>
48 changes: 48 additions & 0 deletions bimestre2/chaAconchegante/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
*{
padding: 0;
margin: 0;
font-family: Helvetica, Arial, sans-serif;
font-size: 22px;
color: seashell;
background-color: black;
opacity: 0.9;
}
nav {
border-bottom: 1px solid seashell;
text-decoration: underline;
height: 69px;
display: flex;
}
.nav-lista {
display: flex;
list-style: none;
gap: 20px;
align-items: center;
justify-content: center;
padding-left: 1000px;
}
.logo {
height: 50px;
margin: 10px;
}
.um {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.foto1 {
height: 700px;
width: 1200px;
}
.frase {
position: absolute;
width: 1200px;
height: 100px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
gap: 20px;
opacity: 1;
}

0 comments on commit 21f0135

Please sign in to comment.