<!-- wp:html --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Gold Prices</title> <style> table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 10px; text-align: center; border: 1px solid #ddd; } th { background-color: #4CAF50; color: white; } </style> </head> <body> <h2></h2> <table> <thead> <tr> <th>Gold Type</th> <th>Tola Price (PKR)</th> <th>10 Gram Price (PKR)</th> </tr> </thead> <tbody> <tr> <td>24K</td> <td>Rs. 347,000</td> <td>Rs. 297,497</td> </tr> <tr> <td>22K</td> <td>Rs. 318,166</td> <td>Rs. 272,706</td> </tr> <tr> <td>21K</td> <td>Rs. 303,704</td> <td>Rs. 260,310</td> </tr> <tr> <td>20K</td> <td>Rs. 289,241</td> <td>Rs. 247,915</td> </tr> </tbody> </table> </body> </html> <!-- /wp:html -->