feat(index):Cria o header desktop e mobile

This commit is contained in:
Nicolly Vieira Santos Costa 2022-10-10 08:50:13 -03:00
parent bfaaff3685
commit fb20505107
3 changed files with 47 additions and 0 deletions

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

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1,21 @@
<!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" />
<link rel="stylesheet" href="styles/main.css">
<title>Landing Page</title>
</head>
<body>
<header class="page-header">
<a href="/">
<img class="header-logo" src="./assets/svgs/logo-m3.svg" alt="logo da M3" />
</a>
</header>
</body>
</html>

View File

@ -0,0 +1,17 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/*Header*/
.page-header {
display: flex;
justify-content: center;
background-color: #000;
padding: 28px 0;
}
.header-logo {
display: block;
}