2020-11-09 21:24:16 -08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Home</title>
|
|
|
|
<meta charset ="UTF-8">
|
|
|
|
<link rel="stylesheet" type="text/css" href="style/style.css">
|
|
|
|
<link rel="shortcut icon" href="icon/buildings (1).png">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="everything">
|
|
|
|
<div id="time" class="time"></div>
|
2022-03-05 18:57:57 -08:00
|
|
|
<form action="https://gowogle.voring.me/search" method="GET">
|
|
|
|
<input autofocus name="q" class="search" type="search" id="search-bar-input" placeholder="" autofocus>
|
|
|
|
</form>
|
2020-11-09 21:24:16 -08:00
|
|
|
<div class="box">
|
|
|
|
<div class="link">
|
|
|
|
<ul>
|
2022-03-05 13:53:44 -08:00
|
|
|
<li><a href="https://stop.voring.me">misskey</a></li>
|
|
|
|
<li><a href="https://pixelfed.social/i/web">pixelfed</a></li>
|
2022-03-05 13:54:38 -08:00
|
|
|
<li><a href="https://github.com">github</a></li>
|
2020-11-09 21:24:16 -08:00
|
|
|
<li><a href="https://reddit.com">reddit</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="link">
|
|
|
|
<ul>
|
|
|
|
<li><a href="https://youtube.com">youtube</a></li>
|
2022-03-05 13:53:44 -08:00
|
|
|
<li><a href="https://soundcloud.com/">soundcloud</a></li>
|
|
|
|
<li><a href="https://zoro.to">zoro</a></li>
|
|
|
|
<li><a href="https://tilvids.com">peertube</a></li>
|
2020-11-09 21:24:16 -08:00
|
|
|
</ul>
|
|
|
|
</div>
|
2022-03-05 13:54:38 -08:00
|
|
|
<!-- Feel free to add more divs here -->
|
2020-11-09 21:24:16 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-03-05 18:59:45 -08:00
|
|
|
<script>
|
|
|
|
function updateClock() {
|
|
|
|
let date = new Date();
|
|
|
|
let hours = date.getHours();
|
|
|
|
let minutes = date.getMinutes();
|
|
|
|
let ampm = hours >= 12 ? 'pm' : 'am';
|
|
|
|
hours = hours % 12;
|
|
|
|
hours = hours ? hours : 12;
|
|
|
|
minutes = minutes < 10 ? '0'+minutes : minutes;
|
|
|
|
let time = hours + ':' + minutes + ' ' + ampm;
|
|
|
|
document.getElementById('time').innerHTML = time;
|
|
|
|
setTimeout(updateClock, 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
updateClock();
|
|
|
|
</script>
|
2020-11-09 21:24:16 -08:00
|
|
|
</body>
|
|
|
|
</html>
|