forked from M3-Academy/challenge-landing-page
Merge pull request 'feat(header): Cria o header desktop e mobile' (#2) from feature/header into main
Reviewed-on: #2
This commit is contained in:
commit
100c4ea1ad
9
assets/imagens/Logo-M3Academy.svg
Normal file
9
assets/imagens/Logo-M3Academy.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 19 KiB |
18
assets/styles/styles.css
Normal file
18
assets/styles/styles.css
Normal file
@ -0,0 +1,18 @@
|
||||
*
|
||||
{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.header-page
|
||||
{
|
||||
padding: 29px 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
background-color: #000000;
|
||||
}
|
||||
.header-logo
|
||||
{
|
||||
display: block;
|
||||
}
|
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>Desafio Landing Page</title>
|
||||
<link rel="stylesheet" href="assets/styles/styles.css">
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="header-page">
|
||||
<a href="/">
|
||||
<img class="header-logo" src="assets/imagens/Logo-M3Academy.svg" alt="Logo M3 academy">
|
||||
</a>
|
||||
</header>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user