feat(header): Foi adicionao a primeira parte no nosso elemento o nosso header

This commit is contained in:
Vinicius Gabriel do Amaral Pereira 2022-10-08 16:09:09 -03:00
parent 08edfea66b
commit c8e06a8acb
3 changed files with 29 additions and 0 deletions

BIN
assets/images/logo_M3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

11
assets/styles/style.css Normal file
View File

@ -0,0 +1,11 @@
html, body{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.header{
display: flex;
justify-content: center;
background: black;
padding: 28px 0;
}

18
index.html Normal file
View File

@ -0,0 +1,18 @@
<!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>Landing Page</title>
<link rel="stylesheet" href="./assets/styles/style.css">
</head>
<body>
<header class="header">
<a href="/">
<img style="display: block;" src="./assets/images/Logo_M3.png" alt="Logo M3">
</a>
</header>
</body>
</html>