This repository has been archived by the owner on Feb 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (84 loc) · 3.37 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!doctype html>
<html>
<head>
<title>SpaceX</title>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0">
<!--CSS-->
<link rel="stylesheet" type="text/css" href="css/main.min.css">
<link rel="stylesheet" type="text/css" href="css/phone.css">
<link rel="stylesheet" type="text/css" href="css/tablet.css">
<link rel="stylesheet" type="text/css" href="css/desktop.css">
<link rel="stylesheet" type="text/css" href="css/imac.css">
<!--JAVA-->
<script src="java/main.js"></script>
</head>
<body>
<header id="main-header">
<h1>SpaceX</h1>
</header>
<video autoplay muted loop id="myVideo">
<source src="videos/Planet_Earth_Beneath_The_Milky_Way_4K.mp4" type="video/mp4">
</video>
<main id="main-main">
<section>
<div class="row">
<article id="countdown">
<h1>Landing in</h1>
<div id="clockdiv">
<div>
<span class="days"></span>
<div class="smalltext">Dagen</div>
</div>
<div>
<span class="hours"></span>
<div class="smalltext">Uren</div>
</div>
<div>
<span class="minutes"></span>
<div class="smalltext">Minuten</div>
</div>
<div>
<span class="seconds"></span>
<div class="smalltext">Seconden</div>
</div>
</div>
</article>
</div>
<div class="row">
<article id="brandstof">
<h2>Gebruikte Brandstof</h2>
<main>
<div id="chartContainer1" style="height: 250px;"></div>
</main>
</article>
</div>
<div class="row">
<article id="water">
<h2>Watervoorraad</h2>
<main>
<div id="chartContainer2" style="height: 250px;"></div>
</main>
</article>
<article id="eten">
<h2>Voedselvoorraad</h2>
<main>
<div id="chartContainer3" style="height: 250px;"></div>
</main>
</article>
</div>
<div class="row">
<article id="g-kracht">
<h2>Actuele G-kracht</h2>
<main>
<div id="chartContainer4" style="height: 300px; width:100%;"></div>
</main>
</article>
</div>
</section>
</main>
<footer id="main-footer">
</footer>
</body>
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
</html>