feat: Adiciona header desktop e mobile

This commit is contained in:
Filipe Quintanilha Evangelista 2022-10-10 19:01:20 -03:00
parent 89ee7124ac
commit 978b1964dc
3 changed files with 46 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

16
assets/styles/main.css Normal file
View File

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

21
index.html Normal file
View File

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