-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (71 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carsten Felix Draschner, PhD</title>
<link rel="stylesheet" href="assets/css/contact-styles.css">
<link rel="stylesheet" href="assets/css/main-page-styles.css"> <!-- New CSS file -->
</head>
<body class="main-page">
<header class="main-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="main-page-main">
<div class="intro-content">
<h2>Welcome to My Personal Website</h2>
<p>I am Carsten Felix Draschner, PhD. Welcome to my personal website where you can find information about my projects, blog posts, publications, and more.</p>
</div>
<div class="content-container">
<a href="blog/index.html" class="content-item">
<img src="assets/images/blog.png" alt="📝 Blog" class="content-icon">
<div>
<h3>Blog</h3>
<p>All my recent Blog Posts.</p>
</div>
</a>
<a href="research.html" class="content-item">
<img src="assets/images/research.png" alt="🔬 Research" class="content-icon">
<div>
<h3>Research</h3>
<p>Extract of Papers, Thesis and Publictions</p>
</div>
</a>
<a href="projects/index.html" class="content-item">
<img src="assets/images/projects.png" alt="💼 Projects" class="content-icon">
<div>
<h3>Projects</h3>
<p>Details fron Hands-On Projects.</p>
</div>
</a>
<a href="cv.html" class="content-item">
<img src="assets/images/cv.png" alt="📄 CV" class="content-icon">
<div>
<h3>CV</h3>
<p>View my CV.</p>
</div>
</a>
<a href="contact.html" class="content-item">
<img src="assets/images/contact.png" alt="✉️ Contact" class="content-icon">
<div>
<h3>Contact</h3>
<p>Feel free to contact me.</p>
</div>
</a>
</div>
</main>
<footer class="main-page-footer">
<p>© 2024 Carsten Felix Draschner, PhD. All rights reserved.</p>
</footer>
</body>
</html>