forked from M3-Academy/challenge-landing-page
Cria o header desktop e mobile
This commit is contained in:
parent
acdd3b0eb3
commit
2a307d911d
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.0 KiB |
@ -0,0 +1,20 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
color:#000000;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 29px 0;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.header-logo {
|
||||
display: block;
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
<!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/styles/main.css" />
|
||||
|
||||
<title>M3 Academy - José G Mata R</title>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header class="page-header">
|
||||
<a href="#">
|
||||
<img class="header-logo" src="./assets/images/logo-m3.png" alt="Logo M3" />
|
||||
</a>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user