forked from M3-Academy/practice-time-landing-page
feat(header): Foi adicionao a primeira parte no nosso elemento o nosso header
This commit is contained in:
parent
08edfea66b
commit
c8e06a8acb
BIN
assets/images/logo_M3.png
Normal file
BIN
assets/images/logo_M3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
11
assets/styles/style.css
Normal file
11
assets/styles/style.css
Normal file
@ -0,0 +1,11 @@
|
||||
html, body{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.header{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
background: black;
|
||||
padding: 28px 0;
|
||||
}
|
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>Landing Page</title>
|
||||
<link rel="stylesheet" href="./assets/styles/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
<a href="/">
|
||||
<img style="display: block;" src="./assets/images/Logo_M3.png" alt="Logo M3">
|
||||
</a>
|
||||
</header>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user