-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (50 loc) · 2.44 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset='UTF-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest2">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsivo.css">
<title>Temporal dilation</title>
</head>
<body>
<div class="container">
<header>
<h1>Temporal dilation between Earth and Miller</h1>
<input placeholder="Data Inicial" type="datetime-local" name="date" id="date" value='2000-06-16T12:00:00'>
</header>
<main>
<div class="earth">
<h1>Elapsed time Earth</h1>
Earth seconds: <span id="earths"></span><br>
Earth minutes: <span id="earthm"></span><br>
Earth hours: <span id="earthh"></span><br>
Earth days: <span id="earthd"></span><br>
Earth years: <span id="eartha"></span><br>
</div>
<div class="miller">
<h1>Elapsed time Miller</h1>
Miller seconds: <span id="millers"></span><br>
Miller minutes: <span id="millerm"></span><br>
Miller hours: <span id="millerh"></span><br>
Miller days: <span id="millerd"></span><br>
Miller years: <span id="millera"></span><br>
</div>
</main>
<footer>
<p>The purpose of this site is to demonstrate the difference in the passage of time between our planet and Miller's planet featured in the interstellar film, portraying Temporal dilation.</p>
<p id="disclaimer">*Approximate time | Select the date</p>
<div class="git">
<a href="https://github.com/RuanMiniguite" target="_blank"><i class="fab fa-github"></i></a>
</div>
</footer>
</div>
</body>
<script src='script.js'></script>
</html>