Страница в разработке

This commit is contained in:
Alexander Zhirov 2023-04-28 21:26:57 +03:00
commit 1bb0efc749
18 changed files with 1363 additions and 0 deletions

BIN
css/ProblematicPiercer.ttf Normal file

Binary file not shown.

1315
css/jquery-ui.css vendored Normal file

File diff suppressed because it is too large Load Diff

21
css/style.css Normal file
View File

@ -0,0 +1,21 @@
@font-face {
font-family: ProblematicPiercer;
src: url(../css/ProblematicPiercer.ttf);
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
flex-direction: column;
color: #333333;
margin: 0;
opacity: 0;
font-family: ProblematicPiercer;
}
div.test {
font-size: 100px;
}

BIN
images/favicon.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 534 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

16
index.html Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Alexander Zhirov</title>
<link href="css/style.css" rel="stylesheet">
<link href="css/jquery-ui.css" rel="stylesheet">
<link href="images/favicon.jpg" rel="icon" type="image/png">
<script src="js/jquery-3.6.4.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<div class="test">Page in development</div>
</body>
</html>

2
js/jquery-3.6.4.min.js vendored Normal file

File diff suppressed because one or more lines are too long

6
js/jquery-ui.min.js vendored Normal file

File diff suppressed because one or more lines are too long

3
js/script.js Normal file
View File

@ -0,0 +1,3 @@
$(document).ready(function(){
$('body').delay(500).fadeTo(500, 1);
});