forked from M3-Academy/challenge-landing-page
feat(home): Adiciona header desktop e mobile
This commit is contained in:
parent
89ee7124ac
commit
a9f9eb2ecf
19
assets/styles/styles.css
Normal file
19
assets/styles/styles.css
Normal file
@ -0,0 +1,19 @@
|
||||
/*resets da página*/
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.page-logo{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 29px 0;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.logo-m3academy{
|
||||
display: block;
|
||||
}
|
9
assets/svgs/logo-m3academy.svg
Normal file
9
assets/svgs/logo-m3academy.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 19 KiB |
22
index.html
Normal file
22
index.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!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 Academy</title>
|
||||
|
||||
<link rel="stylesheet" href="./assets/styles/styles.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--Inicio/menu de navegação-->
|
||||
<header class="page-logo">
|
||||
<nav>
|
||||
<a href="/"><img class="logo-m3academy" src="./assets/svgs/logo-m3academy.svg" alt="Logo M3 Academy"></a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user