Cria o header desktop e mobile

This commit is contained in:
Naian Felix dos Santos 2022-10-08 04:35:41 -03:00
parent 08edfea66b
commit 9f6ad40da7
3 changed files with 49 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 37 KiB

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

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

22
index.html Normal file
View File

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