development #12

Merged
WellingtonDuarteSantos merged 18 commits from development into main 2022-10-13 12:22:40 +00:00
3 changed files with 56 additions and 0 deletions
Showing only changes of commit b76c0a3203 - Show all commits

9
assets/logoM3.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

27
css/style.css Normal file
View File

@ -0,0 +1,27 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Inter', sans-serif;
color: #000000;
}
.page-header{
display: flex;
justify-content: center;
align-items: center;
background-color: #000000;
padding: 28px 0;
}
.header-logo{
display: block;
}
.main-banner-desktop{
display: block;
width: 100%;
}

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>Challenge Landing Page</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<header class="page-header">
<img src="./assets/logoM3.svg" alt="" />
</header>
</body>
</html>