feat: Выполнил практическое задание по DevOps
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user