Cria o header desktop e mobile

This commit is contained in:
Emerson Fully 2022-10-11 20:42:16 -03:00
parent 89ee7124ac
commit 1375b1b6a3
5 changed files with 56 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 KiB

25
index.html Normal file
View File

@ -0,0 +1,25 @@
<!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 M3 Academy</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header class="page-header">
<a href="/">
<img class="header-logo" src="assets/logo-m3academy-1.svg" alt="Logo M3 Academy"></a>
</header>
<main>
<div>
<img class="main-banner " src="assets/main-banner-desktop.png" alt="">
</div>
</main>
</body>
</html>

22
styles/style.css Normal file
View File

@ -0,0 +1,22 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.page-header {
background-color: black;
display: flex;
justify-content: center;
align-items: center;
padding: 28px 0;
}
.header-logo {
display: block;
width: 100%;
}
.main-banner {
width: 100%;
}