-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 2.18 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!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>Digital </title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<section id="topo">
<div class="logo">
<img src="/images/logo_topo.png" alt="">
</div>
<div class="conteudo">
<h6>Torne-se um</h6>
<h1>Full Stack</h1>
<h6>Seja um desenvolvedor com conhecimento em Front-End e Back-End</h6>
<p>
Você aprenderá a conduzir todos os estágios de desenvolvimento de sites e apps, desde a interface até estruturas internas ou bancos de dados. Aprenda HTML5, CSS3, Javascript, React, banco de dados e outras. Torne-se um profissional completo e ganhe mais.
</p>
</div>
<!-- Função javascript que será executada quando o botão enviar for clicado -->
<form id="cadastro" onsubmit="salvarNaAPI()">
<h3> Faça sua pré matrícula</h3>
<p>
Chegou a hora de você transformar sua vida, garanta sua vaga preenchendo os campos abaixo agora mesmo!
</p>
<label for="nome">Nome</label>
<input type="text" id="nome" placeholder="Digite seu nome" required />
<label for="email">Email</label>
<input type="email" id="email" placeholder="Digite seu email" required />
<label for="whatsapp">WhatsApp</label>
<input type="tel" id="whatsapp" placeholder="(00) 00000-0000" required />
<label for="objetivo">Objetivo</label>
<select name="objetivo" id="objetivo">
<option>Mudar de Carreira</option>
<option>Ganhar mais</option>
<option>Qualidade de vida</option>
<option>Trabalhar de casa</option>
</select>
<button type="submit" id="btn">Enviar</button>
</form>
</section>
</main>
<script src="script.js"></script>
</body>
</html>