feat: adiciona html do banner principal e header

This commit is contained in:
Patrick Reis Santos 2022-10-12 00:42:33 -03:00
parent 89ee7124ac
commit f53c9da704
5 changed files with 38 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 825 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

38
index.html Normal file
View File

@ -0,0 +1,38 @@
<!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 Challenge - Patrick Reis</title>
<link rel="stylesheet" href="./assets/Styles/main.css">
</head>
<body>
<header class="page-header">
<a href="index.html">
<img class="logo-cima" src="./assets/Images/Logo-M3Academy 1.png" alt="Logo M3 Academy" />
</a>
</header>
<main>
<section>
<img class="banner-principal banner-principal-desktop" src="./assets/Images/banner-principal-desktop.jpg" alt="Banner principal desktop">
<img class="banner-principal banner-principal-mobile" src="./assets/Images/banner-principal-mobile.jpg" alt="Banner principal mobile">
</section>
<section class="infocard-cima">
<div class="top-texto">
<h2 class="top-titulo-h2">Lorem ipsum</h2>
<h1 class="top-titulo-h1">dolor sit amet</h1>
<p class="top-paragrafo">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Curabitur ut tortor sed lacus egestas vulputate vel sit amet velit. Nulla suscipit magna dui. </p>
</div>
<div>
<img class="img" src="./assets/Images/infocard cima.png" alt="Infocard de cima">
</div>
</section>
</main>
</body>
</html>