-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
57 lines (54 loc) · 2.26 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Carsten Felix Draschner, PhD</title>
<link rel="stylesheet" href="assets/css/contact-styles.css">
</head>
<body class="contact-page">
<header class="contact-page-header">
<h1>Carsten Felix Draschner, PhD</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog/index.html">Blog</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="projects/index.html">Projects</a></li>
<li><a href="cv.html">CV</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main class="contact-page-main">
<h2>Contact</h2>
<p>Welcome! If you would like to get in touch with me or follow my work, here are the best ways to do so:</p>
<div class="contact-container">
<section class="contact-item">
<img src="assets/images/linkedin.png" alt="LinkedIn" class="contact-icon">
<div class="contact-text">
<h3>LinkedIn</h3>
<p>Connect with me on <a href="https://www.linkedin.com/in/carsten-draschner/" target="_blank">LinkedIn</a> to chat or follow my prof. content and updates.</p>
</div>
</section>
<section class="contact-item">
<img src="assets/images/github.png" alt="GitHub" class="contact-icon">
<div class="contact-text">
<h3>GitHub</h3>
<p>Check out my <a href="https://github.com/carstendraschner" target="_blank">GitHub profile</a> to explore my projects. Please note that most of my projects are company IP and cannot be shared publicly.</p>
</div>
</section>
<section class="contact-item">
<img src="assets/images/researchgate.png" alt="Research Gate" class="contact-icon">
<div class="contact-text">
<h3>Research Gate</h3>
<p>Visit my <a href="https://www.researchgate.net/profile/Carsten-Draschner" target="_blank">Research Gate profile</a> to access my research .</p>
</div>
</section>
</div>
</main>
<footer class="contact-page-footer">
<p>© 2024 Carsten Felix Draschner, PhD. All rights reserved.</p>
</footer>
</body>
</html>