2020-10-30 17:16:19 +01:00
|
|
|
<!DOCTYPE html>
|
2020-10-31 12:56:53 +01:00
|
|
|
<html lang="en">
|
2020-10-30 17:16:19 +01:00
|
|
|
<head>
|
2022-04-17 18:14:35 +02:00
|
|
|
<title>OctoSpacc Place | Start Page</title>
|
|
|
|
<meta name="description" content="Kinda empty :/">
|
|
|
|
<meta property="og:title" content="OctoSpacc Place | Start Page">
|
|
|
|
<meta property="og:description" content="Kinda empty :/">
|
2020-10-30 22:27:02 +01:00
|
|
|
<meta property="og:url" content="https://octospacc.gitlab.io/">
|
2021-09-23 22:36:25 +02:00
|
|
|
<meta property="og:image" content="RichPreview/index.jpg">
|
2021-09-22 22:58:20 +02:00
|
|
|
|
2020-10-30 17:16:19 +01:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2020-10-30 21:56:13 +01:00
|
|
|
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
|
2021-09-22 22:58:20 +02:00
|
|
|
<link href="Assets/CSS/Dark.css" rel="stylesheet">
|
|
|
|
<script src="Assets/JS/RandomGIF.js"></script>
|
2022-04-17 19:19:29 +02:00
|
|
|
<script src="Assets/JS/CurrentAge.js"></script>
|
2020-10-30 17:16:19 +01:00
|
|
|
</head>
|
|
|
|
|
2020-10-31 18:57:29 +01:00
|
|
|
<body>
|
2021-09-22 22:58:20 +02:00
|
|
|
<div class="Content" style="text-align: center;">
|
2022-04-17 18:14:35 +02:00
|
|
|
<h1>OctoSpacc Place</h1><br><br>
|
2022-04-13 17:36:10 +02:00
|
|
|
<p>
|
|
|
|
<h3>Still kinda empty :/</h3><br><br><br>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<h4><a href="FumoPrisms/">Fumo Prisms (!)</a></h4>
|
|
|
|
<br>
|
|
|
|
<h4><a href="WebPinBoard/">My WebPinBoard</a></h4>
|
2022-04-17 19:19:29 +02:00
|
|
|
<br>
|
2022-04-13 17:36:10 +02:00
|
|
|
</p>
|
2022-04-17 19:19:29 +02:00
|
|
|
<div>
|
2022-04-17 19:32:59 +02:00
|
|
|
<br><br>
|
2022-04-17 19:19:29 +02:00
|
|
|
<p id="CurrentAge"></p>
|
|
|
|
<noscript><p>There should be a ticking clock here, but your browser isn't loading the JavaScript.</p></noscript>
|
2022-04-17 19:32:59 +02:00
|
|
|
<br>
|
2022-04-17 19:19:29 +02:00
|
|
|
</div>
|
2021-09-22 22:58:20 +02:00
|
|
|
<br><br><br>
|
2020-10-30 17:16:19 +01:00
|
|
|
</div>
|
2022-04-17 19:19:29 +02:00
|
|
|
<script>
|
2022-04-17 19:30:24 +02:00
|
|
|
const CurrentAgeElem = document.getElementById("CurrentAge");
|
2022-04-17 19:19:29 +02:00
|
|
|
const CurrentAgeRefresh = 50;
|
|
|
|
setInterval(
|
2022-04-17 19:30:24 +02:00
|
|
|
function() {CurrentAgeElem.innerHTML = "Currently " + UnixToYears() + ".."},
|
2022-04-17 19:19:29 +02:00
|
|
|
CurrentAgeRefresh);
|
|
|
|
</script>
|
2020-10-30 17:16:19 +01:00
|
|
|
</body>
|
2021-04-13 16:07:36 +02:00
|
|
|
</html>
|