fix: resolve conflitos com h1

This commit is contained in:
Jéssica Silva Oliveira dos Santos 2022-10-13 01:40:40 -03:00
commit 17c9f53133
7 changed files with 97 additions and 37 deletions

BIN
assets/imagens/bannerp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 965 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1,29 +1,60 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Primeiro desafio M3 academy</title>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Primeiro desafio M3 academy</title>
</head>
<body>
<header class="header-page" >
<img class="header-logo"
src="assets/imagens/Logo-M3Academy 1 (2).svg" alt="">
</header>
<main>
<section>
<div>
<figure>
<img class="banner"
src="assets/imagens/banner.png" alt="banner principal">
</figure>
</div>
</section>
</main>
<header class="pagina">
<div>
<figure>
<a href="/">
<img class="logo" src="assets/imagens/Logo-M3Academy.svg" alt="Logo-M3Academy">
</a>
</figure>
</div>
</header>
<main>
<div>
<picture>
<source media="(max-width: 1024px )" srcset="assets/imagens/bannerp.png">
<img class="banner" src="assets/imagens/banner.png" alt="Banner principal">
</picture>
</div>
<section>
<div class="BL">
<h2 class="first-sentence">Lorem ipsum</h2>
<h1 class="sentence">Dolor sit amet</h1>
<p class="one-p">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla
interdum. Curabitur ut tortor sed lacus egestas vulputate vel sit amet velit. Nulla suscipit magna dui. </p>
</div>
<div class="computadores">
<figure>
<img src="assets/imagens/computers.png" alt="computadores">
</figure>
</div>
<div>
<figure>
<img src="assets/imagens/mine-foto-1.png" alt="Primeira miniatura">
</figure>
</div>
</section>
</main>
</body>
</html>

View File

@ -1,21 +1,50 @@
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
@import url('https://fonts.googleapis.com/css2? family= Inter:wght@400;500 & display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
.header-page
{
padding: 29px 0;
display: flex;
justify-content: center;
background-color: #000000;
.pagina {
padding: 29px 0;
display: flex;
justify-content: center;
background-color: #000000;
}
.header-logo
{
display: block;
.logo {
display: block;
}
.banner
{
width: 100%;
.banner {
width: 100%;
}
.BL {
padding: 4% 31%;
text-align: center;
display: block;
}
.first-sentence {
font-weight: 400;
font-size: 32px;
}
.sentence {
font-weight: 500;
font-size: 48px;
}
.one-p {
font-weight: 400;
font-size: 16px;
}
.computadores
{
padding: 4% 0;
text-align: center;
}