feat(index): Adiciona header desktop e mobile

This commit is contained in:
Wellington Duarte Santos 2022-10-10 13:50:29 -03:00
parent 89ee7124ac
commit 9a5e85ab0a
3 changed files with 56 additions and 0 deletions

9
assets/logoM3.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

27
css/style.css Normal file
View File

@ -0,0 +1,27 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Inter', sans-serif;
color: #000000;
}
.page-header{
display: flex;
justify-content: center;
align-items: center;
background-color: #000000;
padding: 28px 0;
}
.header-logo{
display: block;
}
.main-banner-desktop{
display: block;
width: 100%;
}

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" />
<title>Challenge Landing Page</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<header class="page-header">
<img src="./assets/logoM3.svg" alt="" />
</header>
</body>
</html>