initial commit

This commit is contained in:
2023-03-06 20:27:57 +03:00
commit b02b9e1811
70 changed files with 2741 additions and 0 deletions

BIN
static/test/Untitled.ogg Normal file

Binary file not shown.

41
static/test/index.html Normal file
View File

@@ -0,0 +1,41 @@
<!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>

BIN
static/test/saratov.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

21
static/test/saratov.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> SARATOV </title>
</head>
<style>
html {
background-color: black;
justify-content: center;
}
img {
width: 100%;
height: 100%;
}
</style>
<body>
<iframe src="Untitled.ogg" type="audio/ogg" allow="autoplay" id="audio" style="display:none"></iframe>
<img src="saratov.gif">
</body>
</html>