<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
|
<meta charset="utf-8">
|
|
<link type="text/css" rel="stylesheet" href="./styles.css"/>
|
|
<title>Netuno - HTML</title>
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<div class="container">
|
|
<h1>Netuno</h1>
|
|
</div?
|
|
</header>
|
|
<main>
|
|
<h2>Aprenda a desenvolver suas habilidades</h2>
|
|
<p>Página destinada a desenvolvimento de atividade proposta na aula de HTML</p>
|
|
<hr/>
|
|
|
|
<h3>Deseja se inscrever nos proximos cursos?</h3>
|
|
<form method="post">
|
|
<label style="display: block; margin-bottom: 10px;">
|
|
Nome:
|
|
<input style="height: 25px;" type="text" required/>
|
|
</label>
|
|
<label style="display: block; margin-bottom: 15px;">
|
|
Email:
|
|
<input style="height: 25px;" type="email" required/>
|
|
</label>
|
|
<a href="http://dgleyramos.bootcamp.dev.netuno.org:20180/outra/" style="padding: 10px 8px; background-color: #000; color: #fff; cursor: pointer;">Inscreva-se!</a>
|
|
</form>
|
|
</main>
|
|
|
|
<footer style="width: 99%; position: absolute; bottom: 0;">
|
|
<p style="text-align: center;">©Todos os direitos reservados!</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|