-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (59 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>schmurian.github.io</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
h1 {
color: #67d488;
border-bottom: 1px solid white;
border-color: #eafaf7;
padding-bottom: 20px;
font-family: verdana;
}
h2 {
color: #eafaf7;
font-family: verdana;
}
nav {
font-family: verdana;
text-align: center;
color: #eafaf7;
padding-bottom: 20px;
}
a:link, a:visited {
color: #eafaf7;
text-decoration: none;
}
a:hover, a:active {
color: grey;
text-decoration: none;
}
body {
background-color: #363f57;
}
div {
color: #eafaf7;
font-family: verdana;
font-size: 11px;
}
</style>
</head>
<header>
<h1>./Hello World</h1>
<nav>
<a href="index.html">home</a> |
<a href="about.html">about</a> |
<a href="lines.html">stats</a>
</nav>
<header/>
<body>
<section>
<h2>Introduction</h2>
<div>This page contains a readout from a BME 680 environmental sensor. This line chart is a small piece of the bigger project
to create a weather station using Python and some hardware. Soon more details about the project and used software and hardware will be documented.<p/>Thank you for stopping by!</div>
<p/>
<iframe src="lines.html" width="616px" height="616px"></iframe>
<section/>
</body>
</html>