-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
64 lines (55 loc) · 1.92 KB
/
form.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
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="shortcut icon" href="img/upfour_favicon.jpeg" type="image upfour"/>
<link rel="stylesheet" href="form.css">
<title>Contato</title>
</head>
<body>
<nav>
<ul>
<li class="logo">upfour.</li>
<li class="items"><a href="/index.html">Home</a></li>
<li class="items"><a href="/upfor.html">Sobre</a></li>
<li class="items"><a href="/solucoes.html">Soluções</a></li>
<li class="items"><a href="/projeto.html">Projetos</a></li>
<li class="items"><a href="/form.html">Contato</a></li>
</ul>
</nav>
<main>
<h1>Crie sua Conta</h1>
<div class="social-media">
<a href="https:google.com" target="_blank">
<img src="./img/google.png" alt="Google">
</a>
<a href="https:facebook.com" target="_blank">
<img src="./img/facebook (1).png" alt="Facebook">
</a>
<a href="https:linkedin.com" target="_blank">
<img src="./img/linkedin.png" alt="Linkedin">
</a>
</div>
<div class="alternative">
<span>OU</span>
</div>
<form action="">
<label for="name">
<span>Name</span>
<input type="text" id="name" name="name">
</label>
<label for="email">
<span>E-mail</span>
<input type="text" id="email" email="email">
</label>
<label for="senha">
<span>Senha</span>
<input type="text" id="senha" password="senha">
</label>
<input type="submit" value="Inscreva-se">
</form>
</main>
</body>
</html>