feat(css):adicionando e estilizando a logo

This commit is contained in:
Gustavo_Rallenson 2022-10-08 00:42:48 -03:00
parent 1c67f11ad6
commit 8af93f2617
3 changed files with 21 additions and 3 deletions

BIN
assets/Image/m3_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

15
assets/css/main.css Normal file
View File

@ -0,0 +1,15 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.Page-Header{
/* Rectangle 12 */
display: flex;
justify-content: center;
padding: 28px 0;
background: #000000;
}
.Header-Logo{
display: block;
}

View File

@ -1,16 +1,19 @@
<!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="style.css">
<link rel="stylesheet" href="/assets/css/main.css">
<title>M3 Landing Page</title>
</head>
<body>
<main>
<header>
<header class="Page-Header">
<a href="/">
<img class="Header-Logo" src="assets/Image/m3_logo.png" alt="Logo M3">
</a>
</header>
</main>