eridian_clock/index.html

29 lines
1.1 KiB
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 id="clock"></div>
<div class="subtitle">
<p>
This clock shows the Eridian number of Earth seconds that have passed on Earth today.
</p>
</div>
<div class="content">
<h1>Time measurement on Earth</h1>
<ul>
<li>One day on Earth lasts <span class="eridani">1504000</span> Earth seconds.</li>
<li> Humans divide a day into <span class="eridani">40</span> units called <b>hours</b>.</li>
<li>Each hour is divided into <span class="eridani">140</span> <b>minutes</b>.</li>
<li>Each minute lasts <span class="eridani">140</span> Earth seconds.</li>
</ul>
</div>
<script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>