-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimal.html
59 lines (59 loc) · 1.85 KB
/
animal.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/>
<title>Title</title>
</head>
<body>
<div class="container-xxl">
<div class="row">
<div class="col-sm-6 d-sm-block mx-sm-auto mt-5">
<form action="" class="was-validated">
<select class="form-select" name="select">
<option selected>Danh sách lựa chọn</option>
</select>
<!-- submit -->
<button
type="submit"
class="btn btn-primary bg-gradient mt-2 w-100"
id="btn_search"
>
Tìm kiếm
</button>
</form>
<hr />
<h3
class="fw-bold text-center text-uppercase text-decoration-underline"
>
kết quả
</h3>
<br />
<div class="result text-center" id="result"></div>
<!-- ! lists danh sách -->
<!-- Some borders are removed -->
<ul
class="list-group list-group-flush d-flex flex-column flex-wrap justify-content-sm-start gap-2"
></ul>
<!-- ! locations -->
<div class="locations_animals"></div>
</div>
</div>
</div>
<script src="./animal.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
></script>
</body>
</html>