challenge-landing-page/index.html

23 lines
634 B
HTML
Raw Normal View History

2022-10-08 22:36:55 +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</title>
</head>
<body>
<!-- Cabecalho da pagina -->
<header>
<nav>
<a href="/">
<img
src="./assets/images/logo-m3academy.svg"
alt="Logo do treinamento M3 Academy"
/>
</a>
</nav>
</header>
</body>
</html>