2022-10-10 16:50:29 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="pt-br">
|
|
|
|
<head>
|
2022-10-10 18:02:12 +00:00
|
|
|
<!-- FONT FAMILY -->
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
|
|
|
|
2022-10-10 16:50:29 +00:00
|
|
|
<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>Challenge Landing Page</title>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="./css/style.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-10-10 18:02:12 +00:00
|
|
|
<!-- HEADER -->
|
2022-10-10 16:50:29 +00:00
|
|
|
<header class="page-header">
|
|
|
|
<img src="./assets/logoM3.svg" alt="" />
|
|
|
|
</header>
|
|
|
|
|
2022-10-10 18:02:12 +00:00
|
|
|
<!-- MAIN BANNER -->
|
|
|
|
<!-- MAIN BANNER DESKTOP-->
|
|
|
|
<figure>
|
|
|
|
<img src="./assets/main-banner-desktop.png" alt="Banner principal, imagem de um notebook" class="main-banner-desktop">
|
|
|
|
</figure>
|
|
|
|
|
|
|
|
<!-- MAIN BANNER MOBILE-->
|
|
|
|
<figure>
|
2022-10-10 17:07:11 +00:00
|
|
|
<img src="./assets/main-banner-mobile.png" alt="" class="main-banner-mobile">
|
2022-10-10 18:02:12 +00:00
|
|
|
</figure>
|
|
|
|
|
|
|
|
<!-- TOP INFOCARD -->
|
|
|
|
<section class="top-infocard">
|
|
|
|
<!-- SUBTITLE -->
|
|
|
|
<p class="top-infocard-subtitle">
|
|
|
|
Lorem ipsum
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<!-- TITLE -->
|
|
|
|
<p class="top-infocard-title">
|
|
|
|
dolor sit amet
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<!-- DESCRITION -->
|
|
|
|
<p class="top-infocard-description">
|
|
|
|
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>
|
|
|
|
|
|
|
|
<!-- IMAGE -->
|
|
|
|
<figure>
|
|
|
|
<img src="./assets/top-infocard-image.png" alt="Conexão entre computadores" class="top-infocard-image">
|
|
|
|
</figure>
|
2022-10-10 16:50:29 +00:00
|
|
|
|
2022-10-10 18:02:12 +00:00
|
|
|
</section>
|
2022-10-10 20:44:35 +00:00
|
|
|
|
|
|
|
<!-- TOP CARDS -->
|
|
|
|
<div class="top-cards">
|
|
|
|
<!-- CARD 01 -->
|
|
|
|
<div class="card">
|
|
|
|
<figure>
|
|
|
|
<img src="./assets/top-card01.svg" alt="Ícone de uma loja" class="card-image">
|
|
|
|
</figure>
|
|
|
|
<figcaption class="card-description">
|
|
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
|
|
|
</figcaption>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- CARD 02 -->
|
|
|
|
<div class="card">
|
|
|
|
<figure>
|
|
|
|
<img src="./assets/top-card02.svg" alt="Ícone de uma sacola de compras" class="card-image">
|
|
|
|
</figure>
|
|
|
|
<figcaption class="card-description">
|
|
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
|
|
|
</figcaption>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- CARD 03 -->
|
|
|
|
<div class="card">
|
|
|
|
<figure>
|
|
|
|
<img src="./assets/top-card03.svg" alt="Ícone de uma mão fazendo pagamentos" class="card-image">
|
|
|
|
</figure>
|
|
|
|
<figcaption class="card-description">
|
|
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
|
|
|
</figcaption>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-10-10 18:02:12 +00:00
|
|
|
|
2022-10-10 16:50:29 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|