-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 3.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
<title>Perseverance countdown</title>
</head>
<body>
<div class="container-fluid h-100">
<div class="row h-100 ml-5 mr-5">
<div class="col-sm-12 h-25 d-flex justify-content-center">
<h1 class="display-4 align-self-center"><a class="text-white" href="https://mars.nasa.gov/mars2020/">Perseverance</a></h1>
</div>
<div class="col-sm-12 h-50">
<div class="row h-100">
<div class="col d-flex flex-wrap align-items-center">
<img src="assets/img/earth.png" id="earth" class="img-fluid">
</div>
<div class="col-8 d-flex flex-wrap align-items-center" id="flightPath">
<img src="assets/img/rocket.png" id="rocket" class="img-fluid">
<span class="tcm" id="tcm1"></span>
<span class="tcm" id="tcm2"></span>
<span class="tcm" id="tcm3"></span>
<span class="tcm" id="tcm4"></span>
<span class="tcm" id="tcm5"></span>
<span class="tcm" id="tcm5x"></span>
<span class="tcm" id="tcm6"></span>
</div>
<div class="col d-flex flex-wrap align-items-center">
<img src="assets/img/mars.png" id="mars" class="img-fluid">
</div>
</div>
</div>
<div class="col-sm-12 h-25 d-flex justify-content-center text-center">
<span class="count text-white align-self-center" id="remaining" style="display: none"></span>
<span class="count text-white align-self-center" id="elapsed" style="display: none"></span>
<span class="count text-white align-self-center" id="total" style="display: none"></span>
<span class="count text-white align-self-center" id="tcm" style="display: none"></span>
</div>
</div>
</div>
<a href="https://github.com/carlnewton/perseverance"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png?resize=149%2C149" alt="Fork me on GitHub"></a>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.19.1/moment.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>