-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
43 lines (40 loc) · 1.3 KB
/
about.html
File metadata and controls
43 lines (40 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>USB Weather - About</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="page__header">
<h1>HID Weather</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="setup.html">Setup</a></li>
<li><a href="weather.html">Weather Data</a></li>
<li><a class="active" href="#">About</a></li>
</ul>
</nav>
<main>
<article>
<header>
<h2>About</h2>
</header>
<h3>Information according to § 5 TMG</h3>
<p>
{{ADDRESS}}
</p>
<h3>Contact</h3>
<p>Email: {{EMAIL}}</p>
<h3>Data protection</h3>
<p>The creator of this website does not gather any data. There is no third party code used in this website and this website does not use any cookies.</p>
<h3>Accountability for links</h3>
<p>Responsibility for the content of external links (to web pages of third parties) lies solely with the operators of the linked pages. No violations were evident to us at the time of linking. Should any legal infringement become known to us, we will remove the respective link immediately.</p>
</article>
</main>
</body>
</html>