Browse Source

Minha primeira versão

master
Dgley Ramos 3 years ago
commit
421222bc35
3 changed files with 64 additions and 0 deletions
  1. +38
    -0
      index.html
  2. +20
    -0
      outra/index.html
  3. +6
    -0
      styles.css

+ 38
- 0
index.html View File

@ -0,0 +1,38 @@
<!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;">&copy;Todos os direitos reservados!</p>
</footer>
</body>
</html>

+ 20
- 0
outra/index.html View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Inscrito!</title>
</head>
<body>
<header><h1>Netuno</h1><hr/></header>
<main>
<h2>Inscrito!</h2>
<p>Em breve entraremos em contato, assim que aparecer novas vagas!</p>
<a href="./../">Voltar...</a>
</main>
<footer style="width: 99%; position: absolute; bottom: 0;">
<p style="text-align: center;">&copy;Todos os direitos reservados!</p>
</footer>
</body>
</html>

+ 6
- 0
styles.css View File

@ -0,0 +1,6 @@
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}

Loading…
Cancel
Save