colocando a parte da logo e do banner

This commit is contained in:
matheusjardimgarcia 2022-10-12 18:49:01 -03:00
parent 89ee7124ac
commit 922ee9887d
4 changed files with 61 additions and 0 deletions

28
assets/css/style.css Normal file
View File

@ -0,0 +1,28 @@
*{
margin:0;
padding:0;
box-sizing: border-box;
}
.page-header{
position: absolute;
width: 100%;
height: 101px;
left: 0px;
top: 0px;
background: #000000;
}
.header-logo{
position:absolute;
width: 35%;
height: 43px;
left: 847px;
top: 29px;
}
.main-banner-desktop{
position: absolute;
width: 100%;
height: 700px;
left: 0px;
top: 101px;
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

24
index.html Normal file
View File

@ -0,0 +1,24 @@
<!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">
<title>M3 ACADEMY</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header class="page-header">
<a href="/">
<img class ="header-logo" src="./assets/images/Logo-M3Academy 1.svg" alt="Logo M3">
</a>
</header>
<main>
<section>
<img class="main-banner-desktop" src="./assets/images/imagem-top.png" alt="Banner Principal">
</section>
</main>
</body>
</html>