-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpressum.html
More file actions
84 lines (77 loc) · 2.68 KB
/
impressum.html
File metadata and controls
84 lines (77 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impressum - Johannes Dreckhoff</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Header & Navigation -->
<header>
<div class="container">
<a href="index.html" class="logo">Johannes Dreckhoff</a>
<nav>
<a href="index.html#about">About</a>
<a href="index.html#professional">Professional</a>
<a href="index.html#gallery">Gallery</a>
<a href="places.html">Places</a>
<a href="blog/index.html">Blog</a>
<a href="index.html#contact">Contact</a>
</nav>
</div>
</header>
<!-- Main Content -->
<section style="padding: 4rem 0;">
<div class="container">
<div style="max-width: 800px; margin: 0 auto;">
<h1>Impressum</h1>
<div style="margin: 3rem 0;">
<h2>Information</h2>
<p><strong>Website Host:</strong> Johannes Dreckhoff</p>
<p>
<strong>Address:</strong><br>
Mühltalstraße 38<br>
69121 Heidelberg<br>
Germany
</p>
<p>
<strong>Contact:</strong><br>
Email: <a href="mailto:professorjojo373@gmail.com">professorjojo373@gmail.com</a>
</p>
</div>
<div style="margin: 3rem 0;">
<h2>Disclaimer</h2>
<p>
The content of this website is created with the greatest care. However, I cannot guarantee
the accuracy, completeness, or timeliness of the information provided. This website is a
personal project by a physics student, and I appreciate your understanding.
</p>
<p>
Despite careful content control, I assume no liability for the content of external links.
The operators of the linked pages are solely responsible for their content.
</p>
</div>
<div style="margin: 3rem 0;">
<h2>Copyright</h2>
<p>
The content and works on this website are subject to German copyright law. Any duplication,
processing, distribution, or any form of commercialization beyond the scope of copyright law
requires my written consent.
</p>
</div>
<div style="margin-top: 3rem; text-align: center;">
<a href="index.html" class="btn btn-primary">Back to Home</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2026 Johannes Dreckhoff. All rights reserved.</p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>