feat: Cria caebecalho desktop e mobile

This commit is contained in:
Saulo Klein Nery 2022-10-11 11:05:41 -03:00
parent 89ee7124ac
commit 87731f7735
3 changed files with 49 additions and 0 deletions

9
assets/svgs/m3-logo.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

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 charset="author" content="Saulo Klein Nery"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Desafio 1 Landing Page</title>
<link rel="stylesheet" href="./styles/main.css">
</head>
<body>
<header class="page-header">
<a href="#">
<img src="./assets/svgs/m3-logo.svg" alt="Logo da M3">
</a>
</header>
</body>
</html>

16
styles/main.css Normal file
View File

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