-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (61 loc) · 3.27 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
<!DOCTYPE html>
<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">
<title>Star Wars</title>
<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=Aboreto&family=Unbounded:wght@400;500&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/libs/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="assets/css/libs/reset.css">
<link rel="stylesheet" href="assets/css/custom/css/style.css">
<script src="assets/js/libs/bootstrap.bundle.min.js"></script>
</head>
<body class="bg container-fluid d-flex align-items-center justify-content-between">
<div class="bg-dark-bg">
<header class="container-fluid d-flex align-items-center justify-content-between header">
<a href="#">
<h1>Star Wars - Plantes</h1>
</a>
</header>
<main class="container-fluid main d-flex">
<div class="ms-2 mt-5 mb-2 d-flex lista">
<p class="lista">Veja a lista de todos os planetas <a target="_blank" href="https://github.com/IngridsSilveira/starWars-Planets/blob/main/README.md" id="lista">aqui</a></p>
</div>
<div id="preencher" class="d-flex align-items-center preencher">
<div class="pesquisa d-flex align-items-center justify-content-center">
<h1 class="title_pesquisa">Star Wars - Plantes</h1>
<input type="text" id="input" class="form-control">
<button class="btn btn-danger mt-3" id="btn" type="button">Pesquisar</button>
</div>
<div id="novoElemento" class="novoElemento">
<p id="p_planeta" class="p_planeta"></p>
<p id="p_clima" class="p_clima"></p>
<p id="p_terreno" class="p_terreno"></p>
<p id="p_population" class="p_population"></p>
</div>
</div>
</main>
<footer class="footer container-fluid d-flex">
<p class="mt-2">Feito por <a target="_blank" href="ttps://github.com/IngridsSilveira">Dev_Ingrid 🔥</a>
</p>
<div class="footer_area">
<a class="icons_first me-2" target="_blank" href="https://www.linkedin.com/in/ingridssilveira/"><i
class="bi bi-linkedin"></i></a>
<a class="icons_first me-2" target="_blank" href="https://www.instagram.com/dev_ingrid/"><i
class="bi bi-instagram"></i></a>
<a class="icons_first me-2" target="_blank" href="https://github.com/IngridsSilveira"><i
class="bi bi-github"></i></a>
<a class="icons_first" href="https://api.whatsapp.com/send?phone=552179661084" target="_blank">
<i class="bi bi-whatsapp"></i>
</a>
</div>
</footer>
</div>
<script src="assets/js/custom/main.js"></script>
</body>
</html>