Torna definitivo o logo da pagina

This commit is contained in:
Yan Pecanha Garriga 2022-10-09 20:58:09 -03:00
parent 0b3ea06f7f
commit 275a08fa07
3 changed files with 20 additions and 7 deletions

View File

@ -0,0 +1,10 @@
.page-header {
display: flex;
justify-content: center;
background: #000000;
padding: 28px 0;
}
.header-logo {
display: block;
}

View File

@ -1,21 +1,24 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="pt-BR">
<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" />
<title>M3 Desafio 1</title> <title>M3 Desafio 1</title>
<link rel="stylesheet" href="./assets/styles.css/main.css" />
</head> </head>
<body> <body>
<header class="page-header"> <header class="page-header">
<a href="/"> <a href="/">
<img class="header-logo" src="./assets/images/Logo-M3Academy 1.png" alt="Logo M3-Academy"> <img class="header-logo" src="./assets/images/Logo-M3Academy 1.png" alt="Logo M3-Academy" />
</a> </a>
</header> </header>
<main>
</main>
</body> </body>
</html> </html>