forked from M3-Academy/practice-time-landing-page
25 lines
935 B
HTML
25 lines
935 B
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="/assets/css/main.css"/>
|
|
<title>M3 Landing Page</title>
|
|
</head>
|
|
<body>
|
|
<header class="Page-Header">
|
|
<a href="/">
|
|
<img class="Header-Logo" src="assets/Image/m3_logo.png" alt="Logo M3">
|
|
</a>
|
|
</header>
|
|
<main>
|
|
<section>
|
|
<img class="main-banner main-banner-desktop" src="/assets/Image/main-banner-desktop.png" alt="main-banner-desktop"/>
|
|
<img class="main-banner main-banner-mobile"" src="/assets/Image/main-banner-mobile.png" alt="main-banner-mobile"/>
|
|
</section>
|
|
</main>
|
|
<footer></footer>
|
|
</body>
|
|
</html> |