-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloading.html
114 lines (99 loc) · 3.34 KB
/
loading.html
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FRAG.HOUSE</title>
<style>
* {box-sizing: border-box;}
body {margin: 0;
background-image: url("niko.webp");
background-repeat: no-repeat;
background-size: 100% 100%;
min-height: 100vh;
color:white;font-family:monospace}
.column25 {
float: left;
width: 25%;
padding: 15px;
border: 0px solid white;
}
.column50 {
float: left;
width: 50%;
padding: 0px;
border: 0px solid white;
text-align:center;
}
.column1 {
float: left;
width: 100%;
padding: 15px;
border: 0px solid white;
}
a {color:red;}
#middle {border-left:0px dotted white;border-right:0px dotted white;}
.header {
top:0;
color: #ffffff;
padding: 15px;
text-align:center;
border:0px solid grey;
font-size:1.13vw;
margin-bottom:-20px;
}
p {font-size:13px;}
h2 {color:lightyellow;}
.rainbow-text {
background-image: repeating-linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red, violet);
text-align: center;
background-size: 800% 800%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 24px;
animation: rainbow 8s ease infinite;
}
@keyframes rainbow {
0%{background-position:0% 50%}
50%{background-position:100% 25%}
100%{background-position:0% 50%}
}
.animate-logo {
background-image: repeating-linear-gradient(45deg, red, black, green, black, red, black);
background-size: 800% 800%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: animatelogo 8s ease infinite;
}
@keyframes animatelogo {
0%{background-position:0% 50%}
50%{background-position:100% 25%}
100%{background-position:0% 50%}
}
</style>
</head>
<body>
<div class="column1">
<div class="header">
<pre class="animate-logo">
▄████ █▄▄▄▄ ██ ▄▀ ▄ █ ████▄ ▄ ▄▄▄▄▄ ▄███▄
█▀ ▀ █ ▄▀ █ █ ▄▀ █ █ █ █ █ █ ▀▄ █▀ ▀
█▀▀ █▀▀▌ █▄▄█ █ ▀▄ ██▀▀█ █ █ █ █ ▄ ▀▀▀▀▄ ██▄▄
█ █ █ █ █ █ █ █ █ ▀████ █ █ ▀▄▄▄▄▀ █▄ ▄▀
█ █ █ ███ ██ █ █▄ ▄█ ▀███▀
▀ ▀ █ ▀ ▀▀▀
</pre>
</div>
</div>
<audio autoplay>
<source src="GTA 4 Loading Screen Theme HD.mp3" type="audio/mpeg">
</audio>
<div class="column25">
<a href="https://socpens.com"><img src="babyreveal.gif" style="position:absolute;left:10%;bottom:50px;"></a>
</div>
<div class="column50" id="middle">
<h2><i style="color:black;">with my salutations, may your morning be like flowers and may allah protect you from all that may harm </i></h2>
</div>
<div class="column25"></div>
</body>
</html>