forked from oetiker/github-pages-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pale-blue-dot.html
58 lines (47 loc) · 2.38 KB
/
pale-blue-dot.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/svg" href="smiley.svg">
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css" />
<!-- UIkit JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit-icons.min.js"></script>
<title>The Pale Blue Dot</title>
</head>
<body>
<div id="navbar-placeholder"></div>
<script>
fetch('navbar.html')
.then(response => response.text())
.then(data => {
document.getElementById('navbar-placeholder').innerHTML = data;
});
</script>
<div class="uk-container">
<iframe width="1920" height="1080" src="https://www.youtube.com/embed/7ar-c7IlJZ0" title="YouTube video player" frameborder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen uk-responsive uk-video="automute: false"></iframe>
</div>
<p></p>
<div class="uk-container">
<div class="uk-card uk-card-default">
<div class="uk-card-media-top">
<img src="pale-blue-dot.jpeg" width="1800" height="1200" alt="">
</div>
<div class="uk-card-body uk-text-justify">
<p class="uk-text-italic">"Our posturings, our imagined self-importance, the delusion that we have some privileged position in the Universe, are challenged by this point of pale light."<br>-Carl Sagan</p>
<p>Taken on the 14/02/90 by the Voyager 1 space probe, the Pale Blue Dot is a photograph of our planet from a distance of about 6 billion kilometers.</p>
<p>On it, the apparent size of Earth is less than a pixel.</p>
</div>
</div>
</div>
<p></p>
<div class="uk-container">
<div class="uk-card uk-card-default uk-card-small">
<div class="uk-text-justify uk-card-body">
</div>
</div>
</div>
</body>
</html>