Country Information
About this app
Type a country and get its capital, official language(s), UN status, and population.
Country Information Country Information Submit Capital: Languages: UN Status: Population: More Information
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Country Information</title>
<meta name="description" content="Type a country and get its capital, official language(s), UN status, and population.">
<meta name="keywords" content="country, information, capital, official language, UN status, population">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
document.addEventListener("DOMContentLoaded", function() {
$("#submit").click(function() {
var country = $("#country").val();
$.ajax({
url: "https://restcountries.com/v3/name/" + country,
method: "GET",
success: function(response) {
var countryData = response[0];
if (countryData) {
var capital = countryData.capital;
var languages = countryData.languages;
var unStatus = countryData.unMember;
var population = countryData.population;
$("#capital").text(capital || "");
$("#languages").text(languages ? languages.join(", ") : "");
$("#unStatus").text(unStatus || "");
$("#population").text(population || "");
} else {
$("#capital").text("");
$("#languages").text("");
$("#unStatus").text("");
$("#population").text("");
}
},
error: function() {
$("#capital").text("");
$("#languages").text("");
$("#unStatus").text("");
$("#population").text("");
}
});
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
background-color: #f2f2f2;
font-family: 'Roboto', sans-serif;
}
.container {
margin-top: 50px;
text-align: center;
}
h1 {
color: #333;
}
.form-group {
margin-bottom: 20px;
}
.form-control {
width: 300px;
margin: 0 auto;
text-align: center;
}
.btn {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
.btn:hover {
background-color: #555;
}
.result {
margin-top: 20px;
}
.result span {
font-weight: bold;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Country Information</h1>
<div class="form-group">
<input type="text" id="country" class="form-control" placeholder="Enter a country">
</div>
<button id="submit" class="btn">Submit</button>
<div class="result">
<p>Capital: <span id="capital"></span></p>
<p>Languages: <span id="languages"></span></p>
<p>UN Status: <span id="unStatus"></span></p>
<p>Population: <span id="population"></span></p>
</div>
<p><a href="https://restcountries.com/v3/" target="_blank">More Information</a></p>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!