-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.62 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
<!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 - Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="page__header">
<h1>HID Weather</h1>
</header>
<nav>
<ul>
<li><a class="active" href="#">Home</a></li>
<li><a href="setup.html">Setup</a></li>
<li><a href="weather.html">Weather Data</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<main>
<article>
<header>
<h2>Welcome</h2>
</header>
<p>Welcome to HID Weather, where you can display data from your <strong>WH 3080</strong> or <strong>WS 3080</strong> or any compatible whether station.</p>
<p>Check <em>Setup</em> to get started and <em>Weather Data</em> to view your weather stations data.</p>
<p>Thanks to <a target="_blank" rel="nofollow noopener noreferrer" href="http://baublog.ozerov.de/wetterstation/freetz-weather-datenlogger-fuer-wh1080-wh3080/">Alexey</a>, <a target="_blank" rel="nofollow noopener noreferrer" href="http://www.jim-easterbrook.me.uk/weather/mm/">Jim Easterbrook</a> and <a target="_blank" rel="nofollow noopener noreferrer" href="https://github.com/haricotbean/WeatherStation">Bill Wilkins</a> for there works, which helped in the creation of this website.</p>
<p>Are you interested in the code? Then checkout <a target="_blank" rel="nofollow noopener noreferrer" href="https://github.com/atennert/weather-station">the weather station project repository on Github</a>.</p>
</article>
</main>
</body>
</html>