Adiciona o header e a logo

This commit is contained in:
Nicolas Oliveira 2022-10-10 09:54:37 -03:00
parent 89ee7124ac
commit f0f1f9a0a8
4 changed files with 39 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
assets/images/logo-m3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

21
assets/styles.css Normal file
View File

@ -0,0 +1,21 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
color: #000000;
font-family: 'Inter', sans-serif;
}
.page-header {
display: flex;
justify-content: center;
background: #000000;
padding: 1.87rem 0;
}
.header-logo {
display: block;
}

18
index.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=], initial-scale=1.0">
<title>Desafio 1 - M3 Academy</title>
<link rel="stylesheet" href="./assets/styles.css">
</head>
<body>
<header class="page-header">
<a href="/">
<img class="header-logo" src="./assets/images/logo-m3.png" alt="Logo M3">
</a>
</header>
</body>
</html>