feat: Выполнил практическое задание по DevOps

This commit is contained in:
2026-08-17 03:06:32 +03:00
commit d1ca831865
16 changed files with 689 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<html>
<head>
<title>
Hello DevOps world!
</title>
</head>
<body>
<h2>Hello DevOps world!</h2><br>
<h3 id="time"></h3>
<script>
setInterval(() => {
document.getElementById("time").textContent =
new Date().toLocaleTimeString("ru-RU", {
hour: "2-digit",
minute: "2-digit",
second: "2-digit"
});
}, 1000);
</script>
</body></html>