mirror of
https://github.com/catmpeg/catmpeg.github.io.git
synced 2026-02-20 15:50:57 +03:00
36 lines
No EOL
1.1 KiB
HTML
36 lines
No EOL
1.1 KiB
HTML
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Личная страница semkapc" />
|
|
<title>semkapc Page</title>
|
|
<link rel="icon" href="/images/favicon.jpg">
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<header>
|
|
<div id="id_clock">00:00:00</div>
|
|
</header>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<main>
|
|
<h1>404 Not Found</h1>
|
|
<br />
|
|
<h1><a href="/">Главная страница</a></h1>
|
|
<br />
|
|
<br />
|
|
<script>
|
|
function digitalClock() {
|
|
const date = new Date();
|
|
const hours = String(date.getHours()).padStart(2, '0');
|
|
const minutes = String(date.getMinutes()).padStart(2, '0');
|
|
const seconds = String(date.getSeconds()).padStart(2, '0');
|
|
|
|
document.getElementById("id_clock").textContent = `${hours}:${minutes}:${seconds}`;
|
|
setTimeout(digitalClock, 1000);
|
|
}
|
|
|
|
digitalClock();
|
|
</script>
|
|
</main>
|
|
</html> |