This commit is contained in:
Kainoa Kanter 2022-03-05 19:01:27 -08:00
parent b5b6ef5006
commit 4ca9dd5ce9
3 changed files with 56 additions and 48 deletions

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -2,15 +2,23 @@
<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">
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="style/style.css" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="everything">
<body>
<div class="everything">
<div id="time" class="time"></div>
<form action="https://gowogle.voring.me/search" method="GET">
<input autofocus name="q" class="search" type="search" id="search-bar-input" placeholder="" autofocus>
<input
autofocus
name="q"
class="search"
type="search"
id="search-bar-input"
placeholder=""
autofocus
/>
</form>
<div class="box">
<div class="link">
@ -31,22 +39,22 @@
</div>
<!-- Feel free to add more divs here -->
</div>
</div>
<script>
function updateClock() {
</div>
<script>
function updateClock() {
let date = new Date();
let hours = date.getHours();
let minutes = date.getMinutes();
let ampm = hours >= 12 ? 'pm' : 'am';
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;
minutes = minutes < 10 ? "0" + minutes : minutes;
let time = hours + ":" + minutes + " " + ampm;
document.getElementById("time").innerHTML = time;
setTimeout(updateClock, 1000);
}
}
updateClock();
</script>
</body>
updateClock();
</script>
</body>
</html>