|
|
<!DOCTYPE html>
|
|
|
<html lang="en">
|
|
|
<head>
|
|
|
<meta charset="UTF-8">
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
<title>Global City Population Data</title>
|
|
|
<style>
|
|
|
body {
|
|
|
font-family: Arial, sans-serif;
|
|
|
max-width: 800px;
|
|
|
margin: 50px auto;
|
|
|
padding: 20px;
|
|
|
background-color: #f5f5f5;
|
|
|
}
|
|
|
h1 {
|
|
|
color: #2c3e50;
|
|
|
text-align: center;
|
|
|
margin-bottom: 30px;
|
|
|
}
|
|
|
.city-card {
|
|
|
background: white;
|
|
|
border-radius: 8px;
|
|
|
padding: 20px;
|
|
|
margin: 15px 0;
|
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
|
|
}
|
|
|
.city-name {
|
|
|
font-size: 24px;
|
|
|
font-weight: bold;
|
|
|
color: #3498db;
|
|
|
margin-bottom: 10px;
|
|
|
}
|
|
|
.population {
|
|
|
font-size: 18px;
|
|
|
color: #555;
|
|
|
}
|
|
|
.population span {
|
|
|
font-weight: bold;
|
|
|
color: #e74c3c;
|
|
|
}
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
<h1>🌍 Top 3 Most Populous Cities</h1>
|
|
|
|
|
|
<div class="city-card">
|
|
|
<div class="city-name">Tokyo</div>
|
|
|
<div class="population">Population: <span>37.4 million</span></div>
|
|
|
</div>
|
|
|
|
|
|
<div class="city-card">
|
|
|
<div class="city-name">Delhi</div>
|
|
|
<div class="population">Population: <span>32.9 million</span></div>
|
|
|
</div>
|
|
|
|
|
|
<div class="city-card">
|
|
|
<div class="city-name">Shanghai</div>
|
|
|
<div class="population">Population: <span>28.5 million</span></div>
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
</html> |