criao header desktop e mobile

This commit is contained in:
tiago medeiros rodrigues 2022-10-13 10:45:54 -03:00
parent 89ee7124ac
commit 33bfc6d9c3
6 changed files with 53 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.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

22
assets/styles/mian.css Normal file
View File

@ -0,0 +1,22 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: inter, sans-serif;
color: #000000;
}
.cabecalho{
background-color: #000000;
display: flex;
justify-content: center;
padding: 29px 0 ;
max-width: 100%;
}
.cabecalho-logo{
display: block;
}

22
index.html Normal file
View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<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>Desafio Landing Page</title>
<link rel="stylesheet" href="assets/styles/mian.css">
</head>
<body>
<header class="cabecalho">
<a href="/"><img class="cabecalho-logo" src="assets/image/Logo-M3Academy.svg" alt="Logo da M3 academy"></a>
</header>
</body>
</html>