Feature: created header desktop-mobile

This commit is contained in:
Thaís Ferreira Caetano de Jesus 2022-10-10 12:12:02 -03:00
parent 89ee7124ac
commit 645589d723
5 changed files with 42 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

12
Styles/index.css Normal file
View File

@ -0,0 +1,12 @@
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.page-header{
display: flex;
justify-content: center;
padding: 29px 0;
background-color: #000000;
}

21
index.html Normal file
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<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="/Styles/index.css">
<title>Desafio M3 Academy</title>
</head>
<body>
<header class="page-header">
<a href="/">
<img src="./Assets/SVG/Logo-M3Academy.svg" alt="Logo M3Academy">
</a>
</header>
</body>
</html>