Cria o header desktop e mobile

This commit is contained in:
José Gregorio Mata Rodríguez 2022-10-10 00:17:56 -03:00
parent 376613038b
commit 69d92e879b
3 changed files with 35 additions and 0 deletions

BIN
assets/images/logo-m3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

16
assets/styles/main.css Normal file
View File

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

19
index.html Normal file
View File

@ -0,0 +1,19 @@
<!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" />
<link rel="stylesheet" href="./assets/styles/main.css" />
<title>M3 Landing-Page</title>
</head>
<body>
<header class="page-header">
<a href="/">
<img class="header-logo" src="./assets/images/logo-m3.png" alt="Logo M3" />
</a>
</header>
</body>
</html>