This repository has been archived on 2024-09-18. You can view files and clone it, but cannot push or open issues or pull requests.
arka-api/static/test/index.html
2023-03-06 20:27:57 +03:00

41 lines
879 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<style>
@keyframes blinking {
0% {
background-color: #ff3d50;
}
50% {
background-color: #55d66b;
}
75% {
background-color: #d0b91d;
}
100% {
background-color: #222291;
}
}
body {
margin: 0;
padding: 0;
animation: blinking 1s infinite;
}
a {
color: aliceblue;
font-size: 100px;
font-size: 100px;
text-decoration: none;
}
</style>
<meta charset="UTF-8">
<title> title </title>
</head>
<body>
<a href="saratov.html"> не все кто перешол по сылке смагли вернутса взад </a>
</body>
</html>