feat: criacao do header mobile e desktop

This commit is contained in:
Emmanuel Vitor Pereira de Jesus 2022-10-08 23:20:47 -03:00
parent ed24f63b56
commit 17bea6e525
2 changed files with 31 additions and 2 deletions

View File

@ -1,15 +1,27 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="pt-br">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style.css">
<title></title> <title></title>
</head> </head>
<body> <body>
<header>
<a href="./">
<img src="assets/icons/Logo-M3.svg" alt="Logo-M3" class="logo-header">
</a>
</header>
<main>
<div class="banner-principal">
<figure>
<img src="assets/bannerPrincipal.png" alt="Computador aberto com codigos de programação">
</figure>
</div>
</main>
</body> </body>
</html> </html>

View File

@ -0,0 +1,17 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
display: flex;
justify-content: center;
padding: 28px 0;
background-color: #000;
}
.logo-header {
display: block;
}