srikrishna1 commited on
Commit
9e82a6d
·
verified ·
1 Parent(s): 9cdab29

Upload 3 files

Browse files
city_data.html ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Global City Population Data</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ max-width: 800px;
11
+ margin: 50px auto;
12
+ padding: 20px;
13
+ background-color: #f5f5f5;
14
+ }
15
+ h1 {
16
+ color: #2c3e50;
17
+ text-align: center;
18
+ margin-bottom: 30px;
19
+ }
20
+ .city-card {
21
+ background: white;
22
+ border-radius: 8px;
23
+ padding: 20px;
24
+ margin: 15px 0;
25
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
26
+ }
27
+ .city-name {
28
+ font-size: 24px;
29
+ font-weight: bold;
30
+ color: #3498db;
31
+ margin-bottom: 10px;
32
+ }
33
+ .population {
34
+ font-size: 18px;
35
+ color: #555;
36
+ }
37
+ .population span {
38
+ font-weight: bold;
39
+ color: #e74c3c;
40
+ }
41
+ </style>
42
+ </head>
43
+ <body>
44
+ <h1>🌍 Top 3 Most Populous Cities</h1>
45
+
46
+ <div class="city-card">
47
+ <div class="city-name">Tokyo</div>
48
+ <div class="population">Population: <span>37.4 million</span></div>
49
+ </div>
50
+
51
+ <div class="city-card">
52
+ <div class="city-name">Delhi</div>
53
+ <div class="population">Population: <span>32.9 million</span></div>
54
+ </div>
55
+
56
+ <div class="city-card">
57
+ <div class="city-name">Shanghai</div>
58
+ <div class="population">Population: <span>28.5 million</span></div>
59
+ </div>
60
+
61
+ </body>
62
+ </html>
city_overview_Gold.pptx ADDED
Binary file (28.4 kB). View file
 
city_presentation.pptx ADDED
Binary file (28.1 kB). View file