-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (78 loc) · 1.85 KB
/
index.html
File metadata and controls
89 lines (78 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<title>UnknownObjectV2</title>
<link rel="icon" href="icon.png">
<style>
body{
background-image: url("petpetUnknownObjectV2.gif");
background-repeat: repeat;
animation: slide 2s linear infinite;
overflow: hidden;
}
h1{
animation: spin 4s linear infinite;
}
div{
background-color: rgba(0, 0, 0, 0);
display: inline-block;
padding: 30px;
animation: spin2 4s ease-out infinite;
background-size: cover;
background-image: url("scout.png");
color: white;
}
a{
color: white;
}
ul, li{
margin: 0; padding: 0;
}
@keyframes slide{
0% {
background-position: 0px;
}
100% {
background-position: 220px;
}
}
@keyframes spin2{
0% {
transform: scaleX(1);
}
50% {
transform: scaleX(2);
}
100% {
transform: scaleX(1);
}
}
@keyframes spin{
0% {
transform: rotate3d(1, 1, 1, 0deg);
}
100% {
transform: rotate3d(1, 1, 1, 360deg);
}
}
ul{
display: inline-block;
text-align: left;
}
</style>
<body>
<center>
<h1><IMG src="logo.png" height="50" width="932,25"></IMG></h1>
<div>
hello.<br><br>
<ul>
<li><a href="https://github.com/UnknownObjectV2">my GitHub</a></li>
<li><a href="https://youtube.com/@unknownobjectv2">my youtube</a></li>
<li><a href="https://unknownobjectv2.newgrounds.com">my newgrounds</a></li>
<li><a href="https://x.com/UnknownObjectV2">my x (twitter)</a></li>
<li><a href="https://www.pixiv.net/en/users/107736889">my pixiv</a></li>
<li><a href="https://bsky.app/profile/unknownobjectv2.github.io">my Bluesky</a></li>
<li><a href="https://www.instagram.com/unknownobjectv2">my Instagram</a></li>
<li><a href="https://steamcommunity.com/id/UnknownObjectV2">my Steam</a></li>
</ul>
</div>
</center>
</body>