32 lines
965 B
HTML
32 lines
965 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Eridian Clock</title>
|
|
<meta name="description" content="A handy tool for Eridians visiting Earth">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="css/style.css">
|
|
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.png">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="content">
|
|
<div id="clock-eridani"></div>
|
|
<div class="subtitle">
|
|
<p>This clock shows the number of Eridian seconds that have passed on Earth
|
|
today (UTC).</p>
|
|
<p>One day on earth lasts <span class="eridani">441021</span> Eridian
|
|
seconds.</p>
|
|
<p><span class="eridani">1</span> = 2.366</p>
|
|
</div>
|
|
|
|
<div id="clock-human"></div>
|
|
<div class="subtitle">
|
|
<p>This clock shows the number of Earth seconds that have passed today (UTC).</p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script type="text/javascript" src="js/scripts.js"></script>
|
|
</body>
|
|
</html> |