practice-time-landing-page/index.html

64 lines
1.7 KiB
HTML
Raw Normal View History

2022-10-08 00:20:10 +00:00
<!DOCTYPE html>
<html lang="en">
<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>Landing Page by M3 Academy</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header_logo">
<a href="/">
<picture>
<img class="image_logo" src="./assets/img/logo_m3.svg" alt="M3 Logo">
</picture>
</a>
</header>
2022-10-08 00:50:57 +00:00
<main>
<section>
<picture>
<img class="image_banner1 banner_desktop" src="./assets/img/img_banner.png" alt="Banner principal">
</picture>
<picture>
<img class="image_banner2 banner_mobile" src="./assets/img/banner_mobile.svg" alt="banner mobile">
</picture>
</section>
<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>
<picture>
<img class="infocard_image_dinamico" src="./assets/img/vetor.png" alt="image dinâmica">
</picture>
</section>
2022-10-08 00:50:57 +00:00
</main>
2022-10-08 00:20:10 +00:00
</body>
</html>