commit 12299268f6429941d894f63260f2f6e8a21dd428 Author: Sigma Semka Date: Sun Jan 26 02:01:56 2025 +0300 sosiski diff --git a/chat.html b/chat.html new file mode 100644 index 0000000..fb4c463 --- /dev/null +++ b/chat.html @@ -0,0 +1,49 @@ + + + + + + + semkapc Page + + + + + + +
+ Слава Internet Explorer и Netscape! +
+
+
+
+
+
+

Чат

+ Обратно на домашнюю страницу + + + + + +

Внимание!

+

Если у вас не работает чат, проверьте адрес сайта. iframe работает через http, нужно чтобы вы тоже заходили через http.

+
+ + + + diff --git a/favicon.jpg b/favicon.jpg new file mode 100644 index 0000000..4a0d532 Binary files /dev/null and b/favicon.jpg differ diff --git a/games.html b/games.html new file mode 100644 index 0000000..5088aca --- /dev/null +++ b/games.html @@ -0,0 +1,48 @@ + + + + + + + semkapc Page + + + + + + +
+ Слава Internet Explorer и Netscape! +
+
+
+
+
+
+

Игры

+ Обратно на домашнюю страницу +

Doom 2D

+ Играть +

Tetris

+ Играть +

GIFYPET

+ Играть +
+ + + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..b6a059b --- /dev/null +++ b/index.html @@ -0,0 +1,59 @@ + + + + + + + semkapc Page + + + + + + +
+ Слава Internet Explorer и Netscape! +
+
+
+
+
+
+

Добро пожаловать на страницу semkapc

+ + + +
+

Мои контакты:

+ +
+ +
+

Количество заходов на сайт:

+
+
+ +
+ Gamma World + Linux + Web1.0 Hosting + Old Web +
+
+ + + + diff --git a/script.js b/script.js new file mode 100644 index 0000000..f92f3d9 --- /dev/null +++ b/script.js @@ -0,0 +1,18 @@ +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); +} + +document.addEventListener('DOMContentLoaded', (event) => { + digitalClock(); + + // Загрузка счетчика посещений + const script = document.createElement('script'); + script.src = "//counter.websiteout.com/js/3/8/0/1"; + document.getElementById('visit-counter').appendChild(script); +}); \ No newline at end of file diff --git a/soft.html b/soft.html new file mode 100644 index 0000000..bd0aa03 --- /dev/null +++ b/soft.html @@ -0,0 +1,49 @@ + + + + + + + semkapc Page + + + + + + +
+ Слава Internet Explorer и Netscape! +
+
+
+
+
+
+

Программы

+ Обратно на домашнюю страницу +

ICQ 2000b Beta Build 3286 4.70

+ Скачать +

Netscape 6.21

+ Скачать +

MyPal 68.14.6b

+ Скачать 32 Bit + Скачать 64 Bit +
+ + + + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..6945c59 --- /dev/null +++ b/styles.css @@ -0,0 +1,96 @@ +body { + margin: 0; + font-family: 'Nunito', sans-serif; + background: linear-gradient(-45deg, #030303, #222222, #030303, #222222); + background-size: 400% 400%; + animation: gradient 15s ease infinite; + color: #fff; + text-align: center; +} + +@keyframes gradient { + 0% { + background-position: 0% 50%; + } + 50% { + background-position: 100% 50%; + } + 100% { + background-position: 0% 50%; + } +} + +.content { + margin: 20px; +} + +header { + background-color: rgba(0, 0, 0, 0.7); + padding: 10px; + text-align: center; + font-family: 'Ubuntu';font-size: 16px; +} + +main { + max-width: 800px; + margin: 0 auto; + padding: 20px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 20px; +} + +h1, h2 { + text-align: center; +} + +nav { + display: flex; + justify-content: center; + gap: 20px; + margin: 20px 0; + font-family: 'Ubuntu';font-size: 16px; +} + +nav img { + transition: transform 0.3s ease; +} + +nav img:hover { + transform: scale(1.1); +} + +#contacts ul { + list-style-type: none; + padding: 0; +} + +#contacts li { + margin-bottom: 10px; +} + +footer { + display: flex; + justify-content: center; + gap: 10px; + margin-top: 20px; +} + +a { + color: rgb(255, 174, 0); + text-decoration: none; + transition: color 0.3s ease; + font-family: 'Ubuntu';font-size: 16px; +} + +a:hover, a:active { + color: rgb(255, 200, 0); + text-decoration: underline; + font-family: 'Ubuntu';font-size: 16px; +} + +@media (max-width: 600px) { + nav { + flex-direction: column; + align-items: center; + } +} \ No newline at end of file