Header pronto desktop e mobile

This commit is contained in:
DaviHKlein 2022-10-10 16:51:00 -03:00
parent 89ee7124ac
commit 8dff7d76f7
3 changed files with 46 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

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

@ -0,0 +1,17 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Inter', sans-serif;
color: #000;
}
.header{
background-color: #000;
display: flex;
justify-content: center;
padding: 29px 0px;
}

20
index.html Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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>Document</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/styles/main.css"/>
</head>
<body>
<header class="header">
<a href="">
<img class="header-logo" src="./assets/images//LogoM3Academy.svg" alt="logo M3">
</a>
</header>
</body>
</html>