43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
<!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>Desafio Landing Page</title>
|
|
|
|
<link rel="stylesheet" href="assets/styles/main.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<!--Adiciona header-->
|
|
<header class="page-header">
|
|
<a href="/">
|
|
<img class="header-logo" src="assets/imagens/logo-m3.svg" alt="Logo M3" />
|
|
</a>
|
|
</header>
|
|
|
|
<main>
|
|
<!--Adiciona banner principal-->
|
|
<figure>
|
|
<img class="main-banner" src="assets/imagens/main-banner.png" alt="Banner Principal" />
|
|
</figure>
|
|
|
|
<!--Adiciona top infocard-->
|
|
<section class="top-infocard">
|
|
<div class="top-infocard-text">
|
|
<h2 class="top-infocard-subtitle">Lorem ipsum</h2>
|
|
<h1 class="top-infocard-title">dolor sit amet</h1>
|
|
|
|
<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>
|
|
</div>
|
|
|
|
<img class="top-infocard-image" src="assets/imagens/top-infocard-image.png" alt="Banner Infocard Superior">
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html> |