feat(home): Adiciona header desktop e mobile

This commit is contained in:
Manuela Luana Schumacker Tavares 2022-10-10 13:34:10 -03:00
parent 89ee7124ac
commit a9f9eb2ecf
3 changed files with 50 additions and 0 deletions

19
assets/styles/styles.css Normal file
View File

@ -0,0 +1,19 @@
/*resets da página*/
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.page-logo{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 29px 0;
background: #000000;
}
.logo-m3academy{
display: block;
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

22
index.html Normal file
View File

@ -0,0 +1,22 @@
<!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/styles/styles.css">
</head>
<body>
<!--Inicio/menu de navegação-->
<header class="page-logo">
<nav>
<a href="/"><img class="logo-m3academy" src="./assets/svgs/logo-m3academy.svg" alt="Logo M3 Academy"></a>
</nav>
</header>
</body>
</html>