diff --git a/index.html b/index.html index 792a038..b43d5e8 100644 --- a/index.html +++ b/index.html @@ -3,17 +3,120 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Simple HTML Page</title> + <title>About Luigi Lombardo</title> + <style> + body { + font-family: Arial, sans-serif; + line-height: 1.6; + margin: 20px; + } + header { + text-align: center; + margin-bottom: 20px; + } + img { + display: block; + margin: 0 auto 20px; + max-width: 100%; + height: auto; + } + section { + margin-bottom: 40px; + } + h2 { + color: #333; + border-bottom: 1px solid #ccc; + padding-bottom: 5px; + } + ul { + list-style-type: none; + padding: 0; + } + li { + margin-bottom: 10px; + } + </style> </head> <body> <header> - <h1>Welcome to My Simple HTML Page</h1> + <h1>Luigi Lombardo</h1> </header> - <main> - <section> - <img src="https://via.placeholder.com/600x400" alt="Placeholder Image" style="max-width: 100%; height: auto;"> - <p>This is a simple HTML page with a title, an image, and some text. You can replace this image and text with your own content.</p> - </section> - </main> + <section> + <img src="https://landslideresearch.github.io/images/luigi_lombardo.jpg" alt="Luigi Lombardo"> + <h2>About Me</h2> + <p>I am an assistant professor of data-driven modelling for natural hazards at the University of Twente, Faculty of Geo-Information Science and Earth Observation. I am a spatio-temporal data-driven and physics-based modeling enthusiast, with main expertise in earth surface processes such as landslides, flash floods, and soil erosion.</p> + <p>My current scientific direction involves understanding compound hazards’ dynamics, where climatic and/or seismic stresses induce chains of catastrophic effects. My long-term goal is to revolutionize geomorphological risk management tools and policies.</p> + </section> + <section> + <h2>Current PhD Supervision</h2> + <ul> + <li> + <strong>Ashok Dahal</strong><br> + AI in Co-Seismic Landslides + </li> + <li> + <strong>Mateo Moreno Zapata</strong><br> + Spatio-Temporal Modelling + </li> + <li> + <strong>Letizia Elia</strong><br> + Cryospheric Hazards + </li> + <li> + <strong>Zhice Fang</strong><br> + Space-time Modelling + </li> + <li> + <strong>Yuanjing Chen</strong><br> + Physics-Based Modelling + </li> + <li> + <strong>Kun He</strong><br> + InSAR in Landslide Hazards + </li> + <li> + <strong>Tengfei Wang</strong><br> + AI in Deformation Timeseries + </li> + <li> + <strong>Mahnoor Ahmed</strong><br> + Spatio-temporal Early Warning + </li> + <li> + <strong>Priscilla Niyokwiringirwa</strong><br> + Coastal Landscape Evolution + </li> + <li> + <strong>Erin Bryce</strong><br> + Statistical Modelling + </li> + <li> + <strong>Kushanav Bhuyan</strong><br> + Deep Learning for Landslide Mapping + </li> + </ul> + </section> + <section> + <h2>Current MSc Students</h2> + <ul> + <li> + <strong>Jana Lim</strong><br> + Developing an early warning system for rainfall-induced landslides via space-time deep learning tools. + </li> + <li> + <strong>Taseer Hussain</strong><br> + Building hierarchical Bayesian models for coseismic landslide prediction. + </li> + </ul> + </section> + <section> + <h2>Former PhD Students</h2> + <ul> + <li> + <strong>Dr. Marco Loche</strong><br> + Post-doc at Charles University (Czechia) working on multi-scale assessment of thermomechanical processes in geodynamics. + </li> + </ul> + </section> </body> </html>