44 lines
1.5 KiB
HTML
44 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">
|
|
<link rel="stylesheet" href="./src/assets/css/style.css">
|
|
<link rel="shortcut icon" href="./src/assets/img/favicon.jpg" type="image/x-icon">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<title>Landing Page - M3 Academy</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<a href="/">
|
|
<img src="./src/assets/svg/logo.svg" alt="Logo M3">
|
|
</a>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="section1">
|
|
<img src="./src/assets/img/fundo-desktop.png" class="fundo-desktop" alt="Programação">
|
|
<img src="./src/assets/img/fundo-mobile.png" class="fundo-mobile" alt="Programação">
|
|
</section>
|
|
|
|
<section class="section2">
|
|
<div class="container-text">
|
|
<h2 class="text-subtitle">Lorem ipsum</h2>
|
|
<h1 class="text-title">dolor sit amet</h1>
|
|
|
|
<p class="text-paragraph">
|
|
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 class="container-img">
|
|
<img src="./src/assets/svg/computadores.svg" alt="Computadores">
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html> |