-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeamPage.html
More file actions
422 lines (346 loc) · 15.5 KB
/
TeamPage.html
File metadata and controls
422 lines (346 loc) · 15.5 KB
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | My Website</title>
<link rel="stylesheet" href="assets/styles.css">
<style>
/* --- Page-Specific Styles --- */
/* Top text section (intro) */
.intro-section {
background-color: white;
padding: 30px 30px; /* more top & bottom padding */
margin: 0 auto;
justify-content: center; /* vertical centering */
align-items: center; /* horizontal centering */
text-align: center; /* center text inside */
}
.intro-section h1 {
color: #06402b;
font-size: 2.2rem;
margin-bottom: 20px;
}
.intro-section p {
color: #333;
font-size: 1.05rem;
line-height: 1.7;
margin-bottom: 1.5em;
}
/* --- Uniform Team Section Layout --- */
.split {
display: flex;
flex-wrap: nowrap;
align-items: stretch; /* image + text equal height */
height: 500px; /* uniform height across all sections */
margin: 0; /* consistent spacing between sections */
}
.split .image-section {
flex: 1;
background-size: cover;
background-position: center;
}
.split .text-section {
flex: 1;
background: white;
padding: 30px; /* slightly less padding */
display: flex;
flex-direction: column;
justify-content: center;
}
.split .text-section h2 {
color: #06402b;
margin-bottom: 15px;
font-size: 1.6rem;
}
.split .text-section p {
color: #333;
font-size: 1rem;
line-height: 1.7;
}
/* Alternate layout for visual balance */
.split.reverse {
flex-direction: row-reverse;
}
/* --- Mobile: let it resize automatically --- */
/* Responsive */
@media (max-width: 768px) {
.split {
flex-direction: column;
height: auto;
align-items: stretch;
}
.split.reverse {
flex-direction: column;
}
.split .text-section {
padding: 0px;
}
.split .image-section {
width: 100%; /* full width of container */
min-height: 250px; /* visible image height */
height: auto; /* let image scale naturally */
background-size: cover; /* cover the container */
background-position: center center; /* focus on middle of image */
}
}
</style>
</head>
<body>
<header>
<div class="navbar">
<div class="logo">KingMicroLab</div>
<button class="hamburger" id="hamburger-btn">☰</button>
<nav class="nav-links" id="nav-links">
<a href="index.html">Home</a>
<a href="TeamPage.html" class="active">Team</a>
<a href="Research.html">Research</a>
<a href="https://scholar.google.com/citations?hl=en&user=sRcvuMEAAAAJ&view_op=list_works&sortby=pubdate" target="_blank">Publications</a>
<a href="TeamPage.html">Blog</a>
<a href="Contact.html">Contact</a>
</nav>
</div>
</header>
<!-- 🧬 Intro Section -->
<section class="intro-section">
<h1>Our research team</h1>
<p>
</p>
</section>
<!-- 🪴 Section 1 -->
<section class="split">
<div class="image-section" style="background-image: url('assets/images/King_Lab_Resized.jpg');"></div>
<div class="text-section">
<h2>Dr. Will King</h2>
<ul class="position-list">
<li>Assistant Professor – University of Southampton, UK (2024–)</li>
<li>Postdoctoral Scholar – Cornell University, USA (2022–2023)</li>
<li>Postdoctoral Scholar – Pennsylvania State University, USA (2020–2022)</li>
<li>PhD – University of Technology Sydney, AUS (2016–2020)</li>
</ul>
<p>I'm an Assistant Professor (Lecturer - UK equivalent) at the University of Southampton, a research-intensive Russell Group University.
My group seeks to understand: (i) the basic processes that determine root-microbe interactions in the rhizosphere and rhizoplane,
(ii) how can we leverage microbes to improve plant fitness under drought stress, and (iii) the biotic interactions that govern microbial community assembly.
</p>
</div>
</section>
<!-- Break -->
<section class="intro-section">
<h1>Current members</h1>
</section>
<!-- 🦠 Section 2 (reversed layout) -->
<section class="split reverse">
<div class="image-section" style="background-image: url('assets/images/SarahConnery.jpg');"></div>
<div class="text-section">
<h2>Sarah Connery, PhD student</h2>
<ul class="position-list">
<li>PhD – University of Southampton, UK (2024–)</li>
<li>Master's – University College Dublin, Ireland (2022–2023)</li>
<li>BSc Biology – University of British Columbia, Canada (2017–2021)</li>
</ul>
<p>
I am a PhD student passionate about understanding the soil microbiome and its role in sustainable agriculture.
I am currently examining microbe-microbe and plant-microbe interactions, more specifically examining the extent to which host preference plays a role in microbiome establishment.
My previous research focused on looking at the influence of mycorrhizal fungi in barley and wheat crops.
</p>
</div>
</section>
<!-- 🌱 Section 3 -->
<section class="split">
<div class="image-section" style="background-image: url('assets/images/JamesGoodman.jpg');"></div>
<div class="text-section">
<h2>James Goodman, PhD student</h2>
<ul class="position-list">
<li>PhD – University of Southampton, UK (2025–)</li>
<li>BSc, MSci, Biology – University of Southampton, UK (2021–2025)</li>
</ul>
<p>
I am a PhD student currently investigating the interactions between <i>Rhododendron ponticum</i>, native plants, and soil-dwelling microorganisms
in order to illuminate the mechanisms contributing to the success of this invasive species.
I am interested in exploring plant-microbial interactions, especially those with applications in conservation and agriculture;
with previous research experience investigating microorganisms originating from the rhizosphere of invasive plants,
as well as the impact of mycorrhizal inoculants on the abundance of fungi within soils.
</p>
</div>
</section>
<!-- 🌍 Section 4 (reversed layout) -->
<section class="split reverse">
<div class="image-section" style="background-image: url('assets/images/Xinyi.jpg');"></div>
<div class="text-section">
<h2>Xinyi Cen, PhD student</h2>
<ul class="position-list">
<li>PhD – University of Southampton, UK (2025–)</li>
<li>Master’s – Xiamen University, China (2022 – 2025)</li>
<li>Bsc Forestry – Fujian Agriculture and Forestry University (2018 – 2022)</li>
</ul>
<p>
Postgraduate student with a background in environmental microbiology, focusing on microbial community diversity and sulfur-oxidizing bacteria
in coastal ecosystems during a master’s degree at Xiamen University. Currently pursuing a PhD at the University of Southampton,
studying root-associated and soil microbial communities to better understand their ecological roles in nutrient cycling and
plant health under changing environmental conditions. Research aims to link microbial metabolic potential with ecosystem resilience and
sustainability.
</p>
</div>
</section>
<!-- 🌱 Section 5 -->
<section class="split">
<div class="image-section" style="background-image: url('assets/images/HanNewPhoto.jpg');"></div>
<div class="text-section">
<h2>Dongjie Han, PhD student</h2>
<ul class="position-list">
<li>PhD – University of Southampton, UK (2025–)</li>
<li>Master's – University of Southampton, UK (2024–2025)</li>
<li>BSc Marine Biology – University of Portsmouth, UK (2021–2024)</li>
</ul>
<p>
My work is about investigating the impacts of rainfall and storm discharge events on antibiotic resistance genes and the microbiome in streams and coastal
areas of Hampshire and the Isle of Wight. I am passionate about (i) using the One Health approach to study the threat posed by
antibiotic misuse to public health, (ii) exploring the deep-seated impact of storm overflows on aquatic microbiome, and (iii) contributing
to better wastewater management
</p>
</div>
</section>
<!-- reversed layout -->
<section class="split reverse">
<div class="image-section" style="background-image: url('assets/images/ReecePhoto.jpg');"></div>
<div class="text-section">
<h2>Reece Lane-Cartwright, PhD student (co-advised Sandra Wilks and Judith Lock)</h2>
<ul class="position-list">
<li>PhD – University of Southampton, UK (2024–)</li>
<li>MRes – University of Southampton, UK (2023-2024)</li>
<li>BSc Biomedical Science (NHS Integrated Placement) – University of Essex, UK (2019-2023)</li>
</ul>
<p>
My work focuses on zoological based captive animals, looking at the composition of the gut microbiome and resistome.
My research aims to identify key compositional changes linked to anthropogenic drivers.
</p>
</div>
</section>
<!-- 🌱 Section 3 -->
<section class="split">
<div class="image-section" style="background-image: url('assets/images/XiaowenPic.JPEG');"></div>
<div class="text-section">
<h2>Xiaowen Li, PhD student (co-advised Vlad Jiranek)</h2>
<ul class="position-list">
<li>PhD – University of Southampton, UK (2025–)</li>
<li>MSc, Wine Science – Ningxia University, China (2022–2025)</li>
<li>BSc, Viticultural and enological engineering – Ningxia University, China (2017–2021)</li>
</ul>
<p>
I am currently working on the growth characteristics of an interesting yeast. Previous research experience
includes work on the stress tolerance mechanisms of lactic acid bacteria, biofilm formation, and microbial
processes involved in wine fermentation.
</p>
</div>
</section>
<!-- 🌍 Section 4 (reversed layout) -->
<section class="split reverse">
<div class="image-section" style="background-image: url('assets/images/KingLabLogo_HighRes.png');"></div>
<div class="text-section">
<h2>Lewis Barrett, Master's student</h2>
<ul class="position-list">
<li>Bsc, MSci</li>
</ul>
<p>
</p>
</div>
</section>
<!-- 🌍 Section 6 (reversed layout) -->
<section class="split">
<div class="image-section" style="background-image: url('assets/images/KingLabLogo_HighRes.png');"></div>
<div class="text-section">
<h2>Kishor Karthi, Master's student</h2>
<ul class="position-list">
<li>Master's – University of Southampton, UK (2025-)</li>
<li>BSc Plant Biology and Plant Biotechnology – Loyola College, University of Madras, India (2021-2024)</li>
</ul>
<p>
I am an MRes Advanced Biological Sciences student at the University of Southampton.
My research investigates how drought stress influences Barley, focusing on root exudates, M-genes, and the microbiome. I aim to deepen our understanding
of plant adaptation mechanisms and contribute to the development of drought-resilient crops, and plant to pursue a PhD to further advance my research.
</p>
</div>
</section>
<!-- Break -->
<section class="intro-section">
<h1>Previous members (Alumni)</h1>
</section>
<!-- 🌱 Section 5 -->
<section class="split">
<div class="image-section" style="background-image: url('assets/images/LewisLabImage.jpeg');"></div>
<div class="text-section">
<h2>Lewis McLoughlin, Master's student</h2>
<ul class="position-list">
<li>Master's – University of Southampton, UK (2024)</li>
<li>BSc – University of Southampton, UK (2020–2023)</li>
</ul>
</div>
</section>
<!-- Break -->
<section class="intro-section">
<h1>Undergraduates (Alumni)</h1>
<ul class="position-list">
<li>Kotryna Miskinyte - "Gut Microbiome Diversity, Taxonomic Composition, and Functional Potential in Relation to Body Mass Index" - 2024-2025</li>
<li>Zac Triggs - "Comparing the gut microbiome of captive and wild mammals" - 2024-2025</li>
<li>Ruby Fox - "Functional Redundancy and Specialised Pathways in a Pesticide-Contaminated Soil Microbiome" - 2024-2025</li>
<li>Abby Stevens - "Comparing healthy and diseased wheat microbiomes to identify potential microbial biological control agents for wheat yellow mosaic virus" - 2024-2025</li>
</ul>
</section>
<footer class="site-footer">
<div class="footer-content">
<p class="footer-name"><strong>Dr. William L King</strong></p>
<p class="footer-affiliation">
School of Biological Sciences<br>
University of Southampton<br>
Southampton, United Kingdom
</p>
<p class="footer-contact">
📧 <a href="mailto:w.l.king@soton.ac.uk">w.l.king@soton.ac.uk</a>
</p>
<!-- Social links -->
<div class="footer-socials">
<!-- Google Scholar -->
<a href="https://scholar.google.com/citations?hl=en&user=sRcvuMEAAAAJ"
target="_blank" aria-label="Google Scholar" class="social-link">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 3L1 9l11 6 9-4.91V17h2V9L12 3zm0 13L4.24 10 12 6l7.76 4-7.76 4z"/>
</svg>
</a>
<!-- LinkedIn -->
<a href="https://www.linkedin.com/in/william-l-king-5060b398/"
target="_blank" aria-label="LinkedIn" class="social-link">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path d="M4.98 3.5C4.98 4.88 3.86 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1 4.98 2.12 4.98 3.5zM0 8h5v16H0V8zm7.5 0H12v2.2h.08c.61-1.15 2.1-2.37 4.32-2.37 4.62 0 5.48 3.04 5.48 6.99V24h-5v-7.98c0-1.9-.04-4.34-2.65-4.34-2.65 0-3.06 2.07-3.06 4.2V24h-5V8z"/>
</svg>
</a>
<!-- ResearchGate -->
<a href="https://www.researchgate.net/profile/William_King36"
target="_blank" aria-label="ResearchGate" class="social-link">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path d="M3 3h9.6c4.2 0 7.4 2.7 7.4 6.6 0 3-1.7 5.1-4.4 6l4.4 5.4H15l-3.9-4.9H8.5V21H3V3zm5.5 4.3v5.6h3.6c1.9 0 3.1-1.1 3.1-2.8 0-1.7-1.2-2.8-3.1-2.8H8.5z"/>
</svg>
</a>
<!-- X (Twitter) -->
<a href="https://x.com/DrMicroWill"
target="_blank" aria-label="X (Twitter)" class="social-link">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path d="M18.244 2H21l-6.52 7.45L22 22h-6.828l-5.356-6.94L3.64 22H1l6.972-7.97L2 2h7l4.845 6.32L18.244 2zm-1.2 18h1.9L7.12 4H5.1l11.944 16z"/>
</svg>
</a>
<!-- Bluesky -->
<a href="https://bsky.app/profile/drmicrowill.bsky.social"
target="_blank" aria-label="Bluesky" class="social-link">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 12.8c-.5-1-2.5-4-4.5-5.5C5.3 5.9 4 5.3 4 6.5c0 .3.2 2.6.3 3.1.4 1.8 1.8 2.4 3.5 2.2-2.4.4-4.5 1.4-1.7 4.3 3.1 3.2 5.5-.7 5.9-1.5.4.8 2.6 4.8 5.9 1.5 2.8-2.9.7-3.9-1.7-4.3 1.7.2 3.1-.4 3.5-2.2.1-.5.3-2.8.3-3.1 0-1.2-1.3-.6-3.5.8-2 1.5-4 4.5-4.5 5.5z"/>
</svg>
</a>
</div>
</div> <!-- end footer-content -->
</footer>
<script>
document.getElementById('hamburger-btn').addEventListener('click', function() {
document.getElementById('nav-links').classList.toggle('active');
});
</script>
</body>
</html>