-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcards.html
More file actions
57 lines (51 loc) · 3.48 KB
/
cards.html
File metadata and controls
57 lines (51 loc) · 3.48 KB
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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<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>The Countries Web</title>
<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="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar bg-dark navbar sticky-top bg-body-tertiary shadow-lg" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">The Country's Web</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">By Region</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cards.html">By Continent</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search" id="buscador">
<button class="btn btn-outline-success" type="submit" id="searchbutton">Search</button>
</form>
</div>
</div>
</nav>
<div id="region" class="container-sm form-check">
<label class="form-check-label"><input class="continent-checkbox form-check-input" type="checkbox" name="Antarctic"value="Antarctic" />Antarctic</label>
<label class="form-check-label"><input class="continent-checkbox form-check-input" type="checkbox" name="africa" value="Africa"/>África</label>
<label class="form-check-label"><input class="continent-checkbox form-check-input" type="checkbox" name="america" value="Americas"/>Américas</label>
<label class="form-check-label"><input class="continent-checkbox form-check-input" type="checkbox" name="asia" value="Asia"/>Asia</label>
<label class="form-check-label"><input class="continent-checkbox form-check-input" type="checkbox" name="europa" value="Europe" />Europa</label>
<label class="form-check-label"><input class="continent-checkbox form-check-input" type="checkbox" name="oceania" value="Oceania"/>Oceania</label>
</div>
<div class = "container-fluid container-lg ">
<div id="cards-container" class = "container-lg shadow">
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js" integrity="sha384-mQ93GR66B00ZXjt0YO5KlohRA5SY2XofN4zfuZxLkoj1gXtW8ANNCe9d5Y3eG5eD" crossorigin="anonymous"></script>
<script src="maincards.js"></script>
</body>
</html>