37 lines
922 B
HTML
37 lines
922 B
HTML
<!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>
|
|
|
|
<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>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |