-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountry.html
81 lines (68 loc) · 2.95 KB
/
country.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
81
<!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">
<link rel="stylesheet" href="css/country.css">
<title>Countries</title>
</head>
<body>
<header id="home" class="main-header">
<div class="myNavbar">
<h1 class="brand">
<i class="fa-solid fa-earth-europe"></i>
<span>Countries</span> Location
</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
</div>
<div class="content">
<div class="btnCountriesAll">
<div class="panel active" style="background-image: url('img/regionImg/africas.jpg');">
<h3 class="panel-header px-3">Africa</h3>
<a class="btn btn-secondary active btn-lg btn-countries" role="button">Show/Africa</a>
</div>
<div class="panel" style="background-image: url('img/regionImg/americas.jpg');">
<h3 class="panel-header px-3">Americas</h3>
<a class="btn btn-secondary btn-lg btn-countries" role="button">Show/Americas</a>
</div>
<div class="panel" style="background-image: url('img/regionImg/asia.jpg');">
<h3 class="panel-header px-3">Asia</h3>
<a class="btn btn-secondary btn-lg btn-countries" role="button">Show/Asia</a>
</div>
<div class="panel" style="background-image: url('img/regionImg/europe2.jpg');">
<h3 class="panel-header px-3">Europe</h3>
<a class="btn btn-secondary btn-lg btn-countries" role="button">Show/Europe</a>
</div>
<div class="panel" style="background-image: url('img/regionImg/oceania.jpg');">
<h3 class="panel-header px-3">Ocenia</h3>
<a class="btn btn-secondary btn-lg btn-countries" role="button">Show/Oceania</a>
</div>
</div>
</div>
</header>
<main class="container">
<!--* loading -->
<section id="country-data">
<div class="loading-center">
<div id="loading" class="center">
<div class="ring"></div>
<span>loading...</span>
</div>
</div>
<!--* country-card -->
<div class="row justify-content-center cards-country-bg my-4" id="countriesAll">
</div>
<!--* country-details -->
<div class="details-country"><button id="detailsCountry" type="button" class="btn btn-dark country-details-btn">Show</button></div>
</div>
</section>
</main>
</body>
<script src="js/country.js"></script>
</html>