marcellomartins #1

Merged
MarcelloMartins merged 14 commits from marcellomartins into main 2022-10-13 21:47:45 +00:00
3 changed files with 33 additions and 0 deletions
Showing only changes of commit af6ad2b6da - Show all commits

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

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">
<link rel="stylesheet" href="./styles/styles.css">
<title>Document</title>
</head>
<body>
<header>
<a href="./">
<img class= "logo-m3" src="./assets/images/Logo-M3Academy 1.png" alt="Logo M3" />
</a>
</header>
</body>
</html>

13
styles/styles.css Normal file
View File

@ -0,0 +1,13 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
align-items: center;
height: 101px;
display: flex;
justify-content: center;
background: black;
width: 100%;
}