Criacao do header Desktop e mobile

This commit is contained in:
Diego Guilherme Amaral dos Santos 2022-10-12 21:45:11 -03:00
parent 89ee7124ac
commit bffb35511f
3 changed files with 52 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

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

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

26
index.html Normal file
View File

@ -0,0 +1,26 @@
<!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/style/main.css">
</head>
<body>
<header class="header-princ">
<section>
<a href="/">
<figure>
<img class="header-logo" src="./assets/image/Logo-M3Academy.svg" alt="logo header"/>
</figure>
</a>
</section>
</header>
</body>
</html>