Cria o header desktop e mobile
This commit is contained in:
parent
89ee7124ac
commit
1375b1b6a3
9
assets/logo-m3academy-1.svg
Normal file
9
assets/logo-m3academy-1.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 19 KiB |
BIN
assets/main-banner-desktop.png
Normal file
BIN
assets/main-banner-desktop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/main-banner-mobile.png
Normal file
BIN
assets/main-banner-mobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 333 KiB |
25
index.html
Normal file
25
index.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!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 M3 Academy</title>
|
||||
|
||||
<link rel="stylesheet" href="styles/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<a href="/">
|
||||
<img class="header-logo" src="assets/logo-m3academy-1.svg" alt="Logo M3 Academy"></a>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<div>
|
||||
<img class="main-banner " src="assets/main-banner-desktop.png" alt="">
|
||||
</div>
|
||||
</main>
|
||||
|
||||
</body>
|
||||
</html>
|
22
styles/style.css
Normal file
22
styles/style.css
Normal file
@ -0,0 +1,22 @@
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
background-color: black;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 28px 0;
|
||||
}
|
||||
|
||||
.header-logo {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.main-banner {
|
||||
width: 100%;
|
||||
}
|
Loading…
Reference in New Issue
Block a user