forked from M3-Academy/challenge-landing-page
Adiciona o header e a logo
This commit is contained in:
parent
89ee7124ac
commit
f0f1f9a0a8
BIN
assets/images/banner-principal.png
Normal file
BIN
assets/images/banner-principal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/images/logo-m3.png
Normal file
BIN
assets/images/logo-m3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.1 KiB |
21
assets/styles.css
Normal file
21
assets/styles.css
Normal file
@ -0,0 +1,21 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #000000;
|
||||
font-family: 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
background: #000000;
|
||||
padding: 1.87rem 0;
|
||||
}
|
||||
|
||||
.header-logo {
|
||||
display: block;
|
||||
}
|
18
index.html
Normal file
18
index.html
Normal file
@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=], initial-scale=1.0">
|
||||
<title>Desafio 1 - M3 Academy</title>
|
||||
|
||||
<link rel="stylesheet" href="./assets/styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<a href="/">
|
||||
<img class="header-logo" src="./assets/images/logo-m3.png" alt="Logo M3">
|
||||
</a>
|
||||
</header>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user