This commit is contained in:
catmpeg 2025-01-26 02:01:56 +03:00 committed by GitHub
commit 12299268f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 319 additions and 0 deletions

49
soft.html Normal file
View file

@ -0,0 +1,49 @@
<!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="http://old-dos.ru/dl.php?id=34346">Скачать</a>
<h2>Netscape 6.21</h2>
<a href="http://old-dos.ru/dl.php?id=31596">Скачать</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>