forked from M3-Academy/challenge-landing-page
Merge pull request 'feat: adiciona header' (#1) from feature/header into main
Reviewed-on: #1
This commit is contained in:
commit
ee72e0bbbb
BIN
assets/imagens/banner-principal-desktop.png
Normal file
BIN
assets/imagens/banner-principal-desktop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/imagens/banner-principal-mobile.png
Normal file
BIN
assets/imagens/banner-principal-mobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 332 KiB |
BIN
assets/imagens/image-body.png
Normal file
BIN
assets/imagens/image-body.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
BIN
assets/imagens/logo-m3.png
Normal file
BIN
assets/imagens/logo-m3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.0 KiB |
18
assets/style.css
Normal file
18
assets/style.css
Normal file
@ -0,0 +1,18 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.page-header{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background-color: black;
|
||||
height: 101px;
|
||||
}
|
||||
|
||||
.logo-header{
|
||||
display: block;
|
||||
}
|
27
index.html
27
index.html
@ -0,0 +1,27 @@
|
||||
<!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">
|
||||
|
||||
<link rel="stylesheet" href="./assets/style.css">
|
||||
|
||||
<title>Desafio 1 m3</title>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<header class="page-header">
|
||||
<a href="/">
|
||||
<img class="logo-header" src="assets/imagens/logo-m3.png" alt="Logo m3" />
|
||||
</a>
|
||||
</header>
|
||||
</header>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user