This commit is contained in:
Rodrigo 2022-10-09 21:36:50 -03:00
parent 89ee7124ac
commit f91c02b9a6
4 changed files with 48 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

BIN
imagens/Rectangle 9.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

20
index.html Normal file
View File

@ -0,0 +1,20 @@
<!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>Desafio 1 - Landing Page</title>
</head>
<body>
<header class="cabecalho">
<img class="imagemCabecalho" src="imagens/Logo-M3Academy 1.svg" alt="Imagem m3 Academy">
</header>
<main>
<div class="corpoPt1">
<img class="imagemCorpoPt1" src="imagens/Rectangle 9.png" alt="imagem de computador">
</div>
</main>
</body>
</html>

19
style.css Normal file
View File

@ -0,0 +1,19 @@
body{
margin: 0;
}
.cabecalho {
background-color: #000000;
text-align: center;
height: 90%;
width: 100%;
}
.imagemCabecalho {
width: 12%;
height: 42%;
padding-top: 2.5%;
padding-bottom: 2.5%;
}
.imagemCorpoPt1{
width: 100%;
height: 100%;
}