-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (52 loc) · 3.35 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
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<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">
<link rel="icon" href="/assets/lofocor.png" type="image/x-icon" />
<link rel="stylesheet" href="style2.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@600&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap" rel="stylesheet">
<title>Home page</title>
<script type="text/javascript" src="https://www.google.com/books/jsapi.js"></script>
</head>
<body onload="initLogin()">
<div id="navbarLoggedOut"></div>
<div id="navbarLoggedIn"></div>
<div class="principal">
<div style="background: rgba(0, 0, 0, 0.1); padding: 1px; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;">
<h3 style="font-size: 41px; color: #fff; font-family: 'Fredoka', sans-serif;">Ache o livro dos seus sonhos</h3>
<h6 style="font-size: 20px; color: #fff; margin-top: 20px;">Economize tempo, organize seus livros com muita facilidade</h6>
<div id="row" class="input-field" style="display: flex; justify-content: center; margin-top: 47px;">
<input id="campoBuscar" type="text" class="form-control" placeholder="Buscar Livro" style="width: 529px; height: 42px; display: inline; margin-right: 10px;">
<button id="btnPesquisa" class="btn" onclick="pesquisar()" style="width: 87px; height: 40px; background-color: #337ab7; color: #fff;">Buscar</button>
</div>
</div>
</div>
<div class="container">
<footer class="py-3 my-4">
<ul class="nav justify-content-center border-bottom pb-3 mb-3">
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">Home</a></li>
<li class="nav-item"><a href="./politicaTermos/politica.html" class="nav-link px-2 text-muted">Politica de privacidade</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">Pricing</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">FAQs</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">About</a></li>
</ul>
<p class="text-center text-muted">© 2022 Company, Inc</p>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="./comum/comum.js"></script>
<!-- bottstrap -->
</body>
</html>