-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrganizingCommitteePage copy.js
More file actions
35 lines (31 loc) · 2.29 KB
/
OrganizingCommitteePage copy.js
File metadata and controls
35 lines (31 loc) · 2.29 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
class KeynoteSpeakersPage extends HTMLElement {
connectedCallback() {
this.innerHTML = `
<div class=\"organizing-committee\">
<img src=\"img/Vertical wave.png\" alt=\"Vertical wave\" class=\"background-content-demos\">
<div class=\"demos-container\">
<img src=\"img/wave.png\" alt=\"wave\" class=\"wave\">
<h2 class=\"wave-line-h2\">Keynote Speakers</h2>
<img src=\"img/wave.png\" alt=\"wave\" class=\"wave miror\">
</div>
<ul>
<li>
<img src=\"img/Jeff Neasham 29-02-24.jpg\" alt=\"Jeff Neasham img\" class=\"parson-img\">
<div>
<p class=\"name\">Prof. Jeff Neasham</p>
<p>Chair in Acoustic Signal Processing </p>
<p>Head of Intelligent Sensing and Communication (ISC) Research Group</p>
</div>
<div class=\"title\">
Development of real-time passive acoustic detection systems for marine mammals
</div>
<p>
Professor Jeff Neasham graduated in electronic engineering from Newcastle University, Newcastle upon Tyne, UK, in 1994. He worked at Newcastle University from 1994 until 2007 as a Research Associate on research and commercial product development in underwater acoustic communication, sonar imaging, and wireless sensor networks, before taking up an academic post. He is currently Chair in Acoustic Signal Processing with the School of Engineering, Newcastle University, leading the Intelligent Sensing and Communications Research Group and directing the Sensors, Electromagnetics and Acoustics Laboratory (SEALab). He has published over 150 conference and journal publications, and his work on underwater acoustic communication and positioning has been commercialised by companies in the UK and Italy. His current research interests are in underwater acoustic signal processing and device design, wireless communication networks, passive acoustic detection/localisation and biomedical instrumentation.
</p>
</li>
</ul>
</div>
`;
}
}
customElements.define('keynote-speakers-page', KeynoteSpeakersPage);