gabrielferraz #1

Merged
Gabriel_Ferraz_Nogueira merged 9 commits from gabrielferraz into main 2022-10-08 23:56:02 +00:00
3 changed files with 47 additions and 0 deletions
Showing only changes of commit 16d3c4d9c8 - Show all commits

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 37 KiB

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

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

21
index.html Normal file
View File

@ -0,0 +1,21 @@
<!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/images/Logo M3 [branco] (4) 1.svg" alt="Logo M3 "/>
</a>
</header>
</body>
</html>