-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.33 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
<!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">
<title>Entrar</title>
<link rel="shortcut icon" href="imagens/favicon1.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/stylelog.css">
</head>
<body>
<script src="script.js"></script>
<div class="box">
<div id="titulo">
<img src="imagens/arabesco.png" alt="arabesco" id="arabesco">
<h1 id="welcome">Bem Vindo Ao</h1>
<h1 id="livreiros">Livreiros</h1>
<img src="imagens/livreiros_logo.png" alt="livro icon" id="logo">
</div>
<div class="login_box">
<h1>Login</h1>
<div class="email">
<input type="email" placeholder="E-mail" id="email" name="" required="" >
</div>
<div class="senha">
<input type="password" placeholder="Senha" id="senha" name="" required="" >
</div>
<div class="entrar">
<input type="submit" value="Entrar">
</div>
<div class="cadastro">
<p>Não tem uma conta? <a href="cadastro.html">Cadastre-se</a></p>
</div>
</div>
</div>
</body>
</html>