-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (78 loc) · 4.23 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!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" />
<meta name="author" content="Lucas Maciel Francisco (Luk4x)" />
<link rel="shortcut icon" href="./favicon-luk4x.ico" type="image/x-icon" />
<!-- Bootstrap CSS / boxicons library / Google KoHo Font / My CSS -->
<link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css" />
<link href="https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css" type="text/css" 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=KoHo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./css/style.css" type="text/css" />
<title>ViaCEP</title>
</head>
<body>
<main class="container-fluid">
<section class="catch-data align-items-center justify-content-center gap-sm-5 d-flex flex-column position-relative">
<div class="user-input">
<label for="cep-in">
<i class="bx bx-search"></i>
</label>
<input type="text" name="cep-in" id="cep-in" placeholder="28470-000" />
</div>
<div class="spinner-border text-dark" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</section>
<section class="result position-relative m-auto">
<div class="viaCEP-api-data">
<!-- API data from JS -->
</div>
<div class="map h-100">
<!-- Map data from JS -->
</div>
</section>
<div class="socials">
<button class="btn btn-dark bx bx-chevron-down-circle" type="button" data-bs-toggle="collapse" data-bs-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample"></button>
<div class="collapse" id="collapseExample">
<ul class="links-list">
<li class="links-list-item">
<a href="https://github.com/Luk4x" target="_blank" rel="external">
<i class="bx bxl-github"></i>
</a>
</li>
<li class="links-list-item">
<a href="https://www.linkedin.com/in/lucasmacielf/" target="_blank" rel="external">
<i class="bx bxl-linkedin-square"></i>
</a>
</li>
<li class="links-list-item">
<a href="https://www.instagram.com/lu_k4x/" target="_blank" rel="external noopener noreferrer">
<i class="bx bxl-instagram-alt"></i>
</a>
</li>
<li class="links-list-item">
<a href="https://wa.me/5522996112570?text=Yo,%20sinta-se%20livre%20para%20entrar%20em%20contato%20comigo." target="_blank" rel="external">
<i class="bx bxl-whatsapp-square"></i>
</a>
</li>
<li class="links-list-item">
<a href="https://t.me/lu_k4x" target="_blank" rel="external">
<i class="bx bxl-telegram"></i>
</a>
</li>
</ul>
</div>
</div>
</main>
<!-- Bootstrap JS / JQuery / My JS -->
<script src="./js/bootstrap.min.js" type="text/javascript"></script>
<script src="./js/jquery-3.6.0.min.js" type="text/javascript"></script>
<script src="./js/jquery.mask.min.js"></script>
<script src="./js/main.js" type="text/javascript"></script>
</body>
</html>