-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (33 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<title>Is it raining on Wurstmineberg?</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Is it raining on Wurstmineberg?" />
<meta name="author" content="Wurstmineberg" />
<meta charset="utf-8" />
</head>
<body>
<div id="container">
<h1 id="isitraining-caption"> </h1>
<h1 id="rain-caption"> <noscript>JavaScript required</noscript> </h1>
<div id="imdiv"><img id='wimg' src='/img/sun.png' class='img-rounded' /></div>
<p id="rain-text"></p>
<p><span id="forecast-text"></span> </p>
<p>The time is represented in <a href="//time.wurstmineberg.de">Minecraft time.</a></p>
<hr/>
<footer>
<p class="muted text-center"><a href="https://wurstmineberg.de">In case you're wondering what this is about...</a>
<br />
It works because of <a href="https://api.wurstmineberg.de/">this</a>.
</p>
</footer>
</div>
<script src="//code.jquery.com/jquery.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="/rain.js"></script>
</body>
</html>