Merge pull request 'feat(header): Cria o header desktop e mobile' (#2) from feature/header into main

Reviewed-on: #2
This commit is contained in:
Jéssica Silva Oliveira dos Santos 2022-10-13 04:19:25 +00:00
commit 100c4ea1ad
3 changed files with 49 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

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

@ -0,0 +1,18 @@
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.header-page
{
padding: 29px 0;
display: flex;
justify-content: center;
background-color: #000000;
}
.header-logo
{
display: block;
}

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>Desafio Landing Page</title>
<link rel="stylesheet" href="assets/styles/styles.css">
</head>
<body>
<header class="header-page">
<a href="/">
<img class="header-logo" src="assets/imagens/Logo-M3Academy.svg" alt="Logo M3 academy">
</a>
</header>
</body>
</html>