-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 loc) · 924 Bytes
/
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>
<head>
<style>
body {
background-color: #99CC33;
}
h1 {
text-align: center;
}
p {
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
</style>
<title>Ecotricity Meter Reads Service</title>
</head>
<body>
<p>You've reached the demo Ecotricty Meter Reads Service!</p>
<p id='url-placeholder'></p>
<script>
document.getElementById("url-placeholder").innerHTML =
`The web API is available at: <a href=${window.location.href}meter-read>${window.location.href}meter-read</a>`
</script>
<p>For usage and other documentation, check out the <a href=./readme.html>README</a></p>
<p>Check out the <a href=https://github.com/mishabruml/ecotricity-meter-reads-service>github</a> for more info</p>
<p>Written by Misha Bruml, for a job application with Ecotricity</p>
</body>
</html>