24 lines
613 B
HTML
24 lines
613 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="pt-BR">
|
||
|
|
||
|
<head>
|
||
|
|
||
|
<meta charset="UTF-8"/>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||
|
<meta charset="author" content="Saulo Klein Nery"/>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||
|
|
||
|
<title>Desafio 1 Landing Page</title>
|
||
|
|
||
|
<link rel="stylesheet" href="./styles/main.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<header class="page-header">
|
||
|
<a href="#">
|
||
|
<img src="./assets/svgs/m3-logo.svg" alt="Logo da M3">
|
||
|
</a>
|
||
|
</header>
|
||
|
</body>
|
||
|
|
||
|
</html>
|