forked from M3-Academy/challenge-landing-page
Cria o header desktop e mobile
This commit is contained in:
parent
89ee7124ac
commit
f64e0c22c3
BIN
assets/img/Logo-M3Academy.png
Normal file
BIN
assets/img/Logo-M3Academy.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.0 KiB |
BIN
assets/img/main-banner.png
Normal file
BIN
assets/img/main-banner.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 MiB |
18
assets/styles/style.css
Normal file
18
assets/styles/style.css
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
*{
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-header{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 28px 0;
|
||||||
|
background-color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo-header{
|
||||||
|
width: 100%;
|
||||||
|
display: block;
|
||||||
|
height: auto;
|
||||||
|
}
|
18
index.html
Normal file
18
index.html
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<!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 Landing Page</title>
|
||||||
|
<link rel="stylesheet" href="./assets/styles/style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header class="page-header">
|
||||||
|
<a href="/">
|
||||||
|
<img class="logo-header" src="./assets/img/Logo-M3Academy.png" alt="Logo M3 Academy" />
|
||||||
|
</a>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user