Cria o header desktop e mobile

This commit is contained in:
Leonardo Pereira Rocha 2022-10-12 10:11:02 -03:00
parent 89ee7124ac
commit f64e0c22c3
4 changed files with 36 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

BIN
assets/img/main-banner.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

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

@ -0,0 +1,18 @@
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.page-header{
display: flex;
justify-content: center;
padding: 28px 0;
background-color: #000;
}
.logo-header{
width: 100%;
display: block;
height: auto;
}

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>M3 Academy Landing Page</title>
<link rel="stylesheet" href="./assets/styles/style.css" />
</head>
<body>
<header class="page-header">
<a href="/">
<img class="logo-header" src="./assets/img/Logo-M3Academy.png" alt="Logo M3 Academy" />
</a>
</header>
</body>
</html>