development #3

Merged
andreamatsunaga merged 16 commits from development into main 2022-10-12 13:59:04 +00:00
3 changed files with 37 additions and 0 deletions
Showing only changes of commit dfe2c3f00a - Show all commits

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

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

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

20
index.html Normal file
View File

@ -0,0 +1,20 @@
<!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 Landing Page</title>
<link rel="stylesheet" href="./assets/styles/main.css">
</head>
<body>
<header class="page-header">
<a href="/">
<img class="header-logo" src="./assets/img/png_jpg/Logo M3 [branco] (4) 1.png" alt="Logo M3">
</a>
</header>
</body>
</html>