-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (29 loc) · 1.1 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
<!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="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css">
<link rel="stylesheet" href="style.css">
<title>Login Your Name</title>
</head>
<body>
<section id = 'conteudo'>
<h1>Login</h1>
<i class="fas fa-user"></i><span>Usuário</span>
<input type="text" name="user" id="inputs" placeholder=". . . ">
<i class="fas fa-lock"></i><span>Senha</span>
<input type="password" name="senha" id="inputs" placeholder=". . . ">
<br>
<input type="checkbox" value="lsRememberMe" ><span style="font-size: 13px;"> Lembre-se de mim.</span>
<br>
<div id= 'icons'>
<p>OU ENTRE COM:</p>
<i class="fab fa-facebook fa-2x"></i>
<i class="fab fa-google fa-2x"></i>
</div>
<button id='BOTAO'>Entrar</button>
</section>
</body>
</html>