Earthquake
unknown
html
12 days ago
2.6 kB
3
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Earthquakes: Nature's Powerful Phenomena</title> <style> body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 20px; } h1 { color: #2c3e50; text-align: center; } h2 { color: #34495e; } img { max-width: 100%; height: auto; display: block; margin: 20px auto; } .info-box { background-color: #ecf0f1; border: 1px solid #bdc3c7; border-radius: 5px; padding: 15px; margin-bottom: 20px; } </style> </head> <body> <h1>Earthquakes: Nature's Powerful Phenomena</h1> <div class="info-box"> <h2>What is an Earthquake?</h2> <p>An earthquake is a sudden shaking of the ground caused by the movement of tectonic plates beneath the Earth's surface. These movements release stored energy in the form of seismic waves, which can cause significant damage to structures and landscapes.</p> </div> <img src="/api/placeholder/600/400" alt="Illustration of tectonic plates movement"> <h2>Causes of Earthquakes</h2> <ul> <li>Tectonic plate movements</li> <li>Volcanic activity</li> <li>Human activities (e.g., mining, reservoir-induced seismicity)</li> </ul> <h2>Measuring Earthquakes</h2> <p>Earthquakes are measured using two main scales:</p> <ol> <li><strong>Richter Scale:</strong> Measures the magnitude of an earthquake</li> <li><strong>Mercalli Scale:</strong> Measures the intensity of an earthquake based on its effects</li> </ol> <div class="info-box"> <h2>Earthquake Safety Tips</h2> <ul> <li>Drop, cover, and hold on during shaking</li> <li>Stay away from windows and heavy furniture</li> <li>Have an emergency kit prepared</li> <li>Know your area's evacuation routes</li> </ul> </div> <h2>Famous Earthquakes in History</h2> <ul> <li>1906 San Francisco Earthquake</li> <li>2004 Indian Ocean Earthquake and Tsunami</li> <li>2011 Tōhoku Earthquake and Tsunami in Japan</li> </ul> <p>Understanding earthquakes and being prepared can help mitigate their impact on our lives and communities.</p> </body> </html>
Leave a Comment