-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
388 lines (348 loc) · 16.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-102176832-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-102176832-1');
</script>
<title>Mohammad Haghiri</title>
<!-- for-mobile-apps -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Mohammad Haghiri, Hydrogeology, Earth and Environmental Sciences" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false);
function hideURLbar(){ window.scrollTo(0,1); } </script>
<!-- //for-mobile-apps -->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<!-- js -->
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<!-- //js -->
<!-- animation-effect -->
<link href="css/animate.min.css" rel="stylesheet">
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
<!-- //animation-effect -->
<link href='//fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic' rel='stylesheet' type='text/css'>
<!-- start-smoth-scrolling -->
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
});
</script>
<!-- start-smoth-scrolling -->
<style>
/* Change background color */
body {
background-color: #f0f8ff; /* light blue */
}
.about {
background-color: #ffffff; /* white */
}
/* Center name, make it bold and bigger, and change color to black */
.logo h1 {
text-align: center;
font-size: 36px;
font-weight: bold;
margin-top: 20px;
color: #000000; /* Black */
}
/* Change tab colors to dark blue */
.navbar-default .navbar-nav {
float: left;
margin-left: 0;
margin-top: 10px;
font-size: 18px;
font-weight: bold;
}
.navbar-nav > li {
margin-right: 20px; /* Space between menu items */
}
.navbar-nav > li > a {
color: #003366; /* Dark blue color */
}
.navbar-nav > li > a:hover {
color: #002244; /* Darker blue on hover */
}
/* Make the line between header and body thicker, increase header height */
.header {
border-bottom: 4px solid #333;
padding-top: 1cm; /* Add space on top */
padding-bottom: 1cm; /* Add space on bottom */
}
/* Panel Styling for Each Section */
.panel {
border-radius: 4px; /* Subtle rounded corners */
border: 1px solid #ddd; /* Light border for card */
margin-bottom: 20px; /* Space between sections */
}
/* Panel Heading Styling */
.panel-heading {
background-color: #d3d3d3 !important; /* Explicit gray background */
padding: 15px; /* Padding for better spacing */
border-bottom: 1px solid #ddd; /* Border at bottom for separation */
font-size: 18px;
font-weight: bold;
color: #000000; /* Black text */
}
/* Remove any bootstrap class overrides */
.panel-primary .panel-heading {
background-color: #d3d3d3 !important;
color: #000000 !important;
border-color: #ddd;
}
/* Panel Body Styling */
.panel-body {
background-color: #ffffff; /* White background */
padding: 15px; /* Padding for content */
font-size: 14px; /* Improve readability */
}
/* Align and format body text for readability */
.about p, .panel-body p {
text-align: justify; /* Justify text for even alignment */
line-height: 1.6; /* Improve readability with spacing */
margin-bottom: 1em; /* Add spacing between paragraphs */
}
/* Social media button styles with blue buttons */
.social-links a {
margin: 10px;
display: inline-block;
text-decoration: none;
}
.social-links .btn {
background-color: #87CEFA; /* Blue color */
color: white;
padding: 10px 15px;
border-radius: 5px;
font-size: 14px;
text-align: center;
display: inline-block;
transition: background-color 0.3s ease;
}
.social-links .btn:hover {
background-color: #00BFFF; /* Darker blue on hover */
}
/* Change footer background color to darker gray */
.footer {
background-color: #d3d3d3; /* Darker gray */
color: #333333; /* Dark gray text */
padding: 20px 0;
border-top: 4px solid #333; /* Add border line similar to top */
}
/* Change footer text to dark blue */
.footer h3, .footer p, .footer a {
color: #003366; /* Dark blue */
text-decoration: none;
}
/* Change name in footer to black */
.footer h3 {
color: #000000; /* Black */
}
.footer a:hover {
color: #002244; /* Darker blue on hover */
}
/* Change footer tabs to black */
.footer-grids1-left ul li a {
color: black;
}
.footer-grids1-left ul li a:hover {
color: #333333; /* Slightly darker black on hover */
}
/* Make the "Department of Earth and Environmental Sciences (UIC)" link blue */
.panel-heading.panel_text a {
color: blue; /* Blue color for links */
}
/* Contact form styles */
.contact-form {
margin: 30px 0;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 4px;
}
.contact-form button {
padding: 10px 15px;
background-color: #87CEFA;
border: none;
color: white;
border-radius: 4px;
cursor: pointer;
}
.contact-form button:hover {
background-color: #00BFFF;
}
</style>
</head>
<body>
<!-- header -->
<div class="header">
<div class="container">
<nav class="navbar navbar-default">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="logo">
<h1><a class="navbar-brand" href="index.html">Mohammad Haghiri</a></h1>
</div>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse nav-wil" id="bs-example-navbar-collapse-1">
<nav class="menu menu--francisco">
<ul class="nav navbar-nav menu__list">
<li class="menu__item"><a href="index.html" class="menu__link"><span class="menu__helper">Home</span></a></li>
<li class="menu__item"><a href="research_edit.html" class="menu__link"><span class="menu__helper">Research</span></a></li>
<li class="menu__item"><a href="publications.html" class="menu__link"><span class="menu__helper">Publications</span></a></li>
<li class="menu__item"><a href="github.html" class="menu__link"><span class="menu__helper">Github</span></a></li>
</ul>
</nav>
</div>
<!-- /.navbar-collapse -->
</nav>
</div>
</div>
<!-- //header -->
<!-- about -->
<div class="about">
<div class="container">
<div class="about-grids">
<div class="col-md-6 about-grids-left">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<!-- Box for "Welcome to My Website" -->
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Welcome to My Website</h3>
</div>
<div class="panel-body">
<p>I am a Ph.D. student at the University of Illinois Chicago, currently specializing in Earth and Environmental Sciences. My research is centered around using the Water Table Model (WTM) to predict climate-induced changes in global water tables from 1500CE to 3000CE, with a focus on understanding groundwater resources and the impact of climate variables. By analyzing data from both historical records and future projections, my work aims to enhance water resource management and support climate change adaptation strategies.</p>
<p>I hold a Master's degree in Hydrogeology from the University of Tehran, where my research involved hydrochemical and isotopic analysis of karst aquifers in the Hashtgerd Basin, Iran. This study highlighted the critical nature of karst aquifers for regional drinking water supply and underscored the importance of effective water resource management to mitigate the impacts of drilling activities. My undergraduate research at Kharazmi University examined runoff harvesting for agricultural water consumption in arid regions, using remote sensing and field visits to develop sustainable water management solutions.</p>
<p>Beyond my academic research, I have experience as a teaching assistant in courses ranging from hydrogeology to global environmental change, and I have actively contributed to the scientific community as a reviewer for journals in water resource management. My diverse background in hydrogeology, climate change, and environmental sciences reflects my commitment to addressing critical challenges in water sustainability and climate resilience.</p>
</div>
</div>
<!-- Box for "News" -->
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">News</h3>
</div>
<div class="panel-body">
<p><b><em>October 2024:</em></b> I'm delighted to announce that my abstract, focusing on using the Water Table Model (WTM) to predict climate-induced changes in North American water table levels from 2020 to 2100, has been accepted for presentation at the AGU24 conference this December in Washington, D.C.</p>
<p><b><em>July 2024:</em></b> A new study explores the feasibility of constructing a runoff reservoir in Kariyan village, Hormozgan, Iran, utilizing remote sensing and field analysis to enhance agricultural water management in response to inconsistent rainfall patterns.</p>
<p><b><em>February 2024:</em></b> A recent study utilizing fuzzy logic models (FAHP) and analytical hierarchy processes (AHP) unveils significant potential for karst aquifer development in North Iran's Hashtgerd watershed, offering insights into addressing water scarcity through unconventional water resources.</p>
<p><b><em>August 2023:</em></b> I have embarked on my Ph.D. journey in Earth and Environmental Sciences at the University of Illinois Chicago, focusing on predicting global water table changes due to climate impacts.</p>
<p><b><em>June 2022:</em></b> I successfully completed my Master’s in Hydrogeology at the University of Tehran, where I focused on hydrochemical and isotopic analysis of karst aquifers.</p>
<p><b><em>April 2021:</em></b> New study reveals the comparative economic and engineering advantages of constructing freshwater reservoirs across Iran’s provinces, with Khorasan-South emerging as the most economical.</p>
<p><b><em>September 2020:</em></b> I’m excited to have started my Master’s in Hydrogeology at the University of Tehran, focusing on the fascinating study of karst aquifers and their hydrochemical dynamics.</p>
</div>
</div>
<!-- Contact Form Panel -->
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Send Me a Message</h3>
</div>
<div class="panel-body">
<form action="https://formspree.io/f/mvgopbzg" method="POST" class="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="_replyto" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" rows="5" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
<!-- End of Contact Form Panel -->
</div>
</div>
</div>
<div class="col-md-6 about-grids-right">
<img src="images/thumbnail_81658.jpg" alt="Mohammad Haghiri" class="img-responsive" />
<div class="panel-heading panel_text">
<h3>Mohammad Haghiri</h3>
<p>Ph.D Student, University of Illinois Chicago</p>
<p><a href="https://eaes.uic.edu/profiles/haghiri-mohammad/" target="_blank">Department of Earth and Environmental Sciences (UIC)</a></p>
</div>
<!-- Social media buttons -->
<div class="social-links">
<a href="https://scholar.google.com/citations?hl=nl&user=0_YEtSYAAAAJ" target="_blank">
<span class="btn">Google Scholar</span>
</a>
<a href="https://www.linkedin.com/in/mohammad-haghiri77/" target="_blank">
<span class="btn">LinkedIn</span>
</a>
<a href="https://www.researchgate.net/profile/Mohammad-Haghiri" target="_blank">
<span class="btn">ResearchGate</span>
</a>
<a href="https://orcid.org/0000-0003-0528-4260" target="_blank">
<span class="btn">ORCID</span>
</a>
<a href="images/Mohammad Haghiri_CV_public.pdf" target="_blank">
<span class="btn">CV</span>
</a>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- //about -->
<!-- footer -->
<div class="footer"><a name="CONTACT Information"></a>
<div class="container">
<div class="footer-grids">
<div class="col-md-4 footer-grid">
<h3>Contact Information</h3>
<p>Email: mhaghi2@uic.edu</p>
<p>Building & Room: 3156 SES</p>
<p>Address: 845 West Taylor St.</p>
</div>
<div class="col-md-4 footer-grid">
<br><br><br>
</div>
<div class="clearfix"></div>
</div>
<div class="footer-grids1">
<div class="footer-grids1-left">
<ul>
<li class="menu__item"><a href="index.html">Home</a></li>
<li class="menu__item"><a href="research_edit.html" class="menu__link"><span class="menu__helper">Research</span></a></li>
<li class="menu__item"><a href="publications.html" class="menu__link"><span class="menu__helper">Publications</span></a></li>
<li class="menu__item"><a href="github.html" class="menu__link"><span class="menu__helper">Github</span></a></li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<!-- //footer -->
<!-- for bootstrap working -->
<script src="js/bootstrap.js"></script>
<!-- //for bootstrap working -->
<!-- here starts scrolling icon -->
<script type="text/javascript">
$(document).ready(function() {
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
<!-- //here ends scrolling icon -->
</body>
</html>