feat: Cria caebecalho desktop e mobile
This commit is contained in:
parent
89ee7124ac
commit
87731f7735
9
assets/svgs/m3-logo.svg
Normal file
9
assets/svgs/m3-logo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 19 KiB |
24
index.html
Normal file
24
index.html
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR">
|
||||
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||||
<meta charset="author" content="Saulo Klein Nery"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
|
||||
<title>Desafio 1 Landing Page</title>
|
||||
|
||||
<link rel="stylesheet" href="./styles/main.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<a href="#">
|
||||
<img src="./assets/svgs/m3-logo.svg" alt="Logo da M3">
|
||||
</a>
|
||||
</header>
|
||||
</body>
|
||||
|
||||
</html>
|
16
styles/main.css
Normal file
16
styles/main.css
Normal file
@ -0,0 +1,16 @@
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
img{
|
||||
display: block;
|
||||
}
|
||||
|
||||
.page-header{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
background: #000000;
|
||||
padding: 29px 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user