feat: header

This commit is contained in:
Gabriel Ferreira Lehmann 2022-10-08 22:07:51 -03:00
parent 08edfea66b
commit fccc70b78a
4 changed files with 33 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
assets/Rectangle 9.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

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="./style.css">
</head>
<body>
<header>
<a href="/">
<img src="./assets/Logo M3 [branco] (4) 1.png" alt="logo da M3"
/>
</a>
</header>
</body>
</html>

15
style.css Normal file
View File

@ -0,0 +1,15 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* header */
header{
background-color: black;
display: flex;
justify-content: center;
}
header img{
padding: 28px 0 29px 0;
}