forked from M3-Academy/challenge-landing-page
colocando a parte da logo e do banner
This commit is contained in:
parent
89ee7124ac
commit
922ee9887d
28
assets/css/style.css
Normal file
28
assets/css/style.css
Normal file
@ -0,0 +1,28 @@
|
||||
*{
|
||||
margin:0;
|
||||
padding:0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.page-header{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 101px;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.header-logo{
|
||||
position:absolute;
|
||||
width: 35%;
|
||||
height: 43px;
|
||||
left: 847px;
|
||||
top: 29px;
|
||||
}
|
||||
.main-banner-desktop{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 700px;
|
||||
left: 0px;
|
||||
top: 101px;
|
||||
}
|
9
assets/images/Logo-M3Academy 1.svg
Normal file
9
assets/images/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/images/imagem-top.png
Normal file
BIN
assets/images/imagem-top.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
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 name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>M3 ACADEMY</title>
|
||||
<link rel="stylesheet" href="./assets/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header class="page-header">
|
||||
<a href="/">
|
||||
<img class ="header-logo" src="./assets/images/Logo-M3Academy 1.svg" alt="Logo M3">
|
||||
</a>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section>
|
||||
<img class="main-banner-desktop" src="./assets/images/imagem-top.png" alt="Banner Principal">
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user