mirror of
https://github.com/catmpeg/catmpeg.github.io.git
synced 2026-02-20 15:50:57 +03:00
49 lines
2 KiB
HTML
49 lines
2 KiB
HTML
<!DOCTYPE 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="favicon.jpg">
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet'>
|
|
<style>
|
|
body {
|
|
font-family: 'Ubuntu';font-size: 16px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<marquee>Слава Internet Explorer и Netscape!</marquee>
|
|
<div id="id_clock"></div>
|
|
</header>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<main>
|
|
<h1>Программы</h1>
|
|
<a href="//semkapc.github.io/">Обратно на домашнюю страницу</a>
|
|
<h2>ICQ 2000b Beta Build 3286 4.70</h2>
|
|
<a href="//semkapc.github.com/soft/ICQ.ver.2000b Beta Build 3286 4.70.English.zip">Скачать</a>
|
|
<h2>Netscape 6.21</h2>
|
|
<a href="//semkapc.github.com/soft/Netscape Navigator.ver.6.21.English.exe">Скачать</a>
|
|
<h2>MyPal 68.14.6b</h2>
|
|
<a href="https://github.com/Feodor2/Mypal68/releases/download/68.14.6b/mypal-68.14.6.en-US.win32.zip">Скачать 32 Bit</a>
|
|
<a href="https://github.com/Feodor2/Mypal68/releases/download/68.14.6b/mypal-68.14.6.en-US.win64.zip">Скачать 64 Bit</a>
|
|
</main>
|
|
|
|
<script>
|
|
function digitalClock() {
|
|
var date = new Date();
|
|
var hours = date.getHours().toString().padStart(2, '0');
|
|
var minutes = date.getMinutes().toString().padStart(2, '0');
|
|
var seconds = date.getSeconds().toString().padStart(2, '0');
|
|
document.getElementById("id_clock").innerHTML = hours + ":" + minutes + ":" + seconds;
|
|
setTimeout(digitalClock, 1000);
|
|
}
|
|
digitalClock();
|
|
</script>
|
|
</body>
|
|
</html>
|