-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (132 loc) · 3.28 KB
/
index.html
File metadata and controls
151 lines (132 loc) · 3.28 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GITHUB BY RAMAFOUNDERNCS</title>
<link rel="icon" href="https://i.ibb.co/JWVcjxpH/githubrama.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background-color: #000;
color: #fff;
font-family: 'Share Tech Mono', monospace;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
min-height: 100vh;
overflow-x: hidden;
padding: 20px;
}
.logo img {
width: 140px;
max-width: 80vw;
height: auto;
margin-top: 30px;
}
.blink {
color: maroon;
font-size: 1.5rem;
animation: blink 1s step-start infinite;
margin-top: 20px;
font-weight: bold;
}
@keyframes blink {
50% {
opacity: 0;
}
}
.main-text {
font-size: 1.8rem;
color: maroon;
margin-top: 10px;
font-weight: bold;
}
.sub-text,
.sub-text-small {
font-size: 1rem;
color: #fff;
margin-top: 20px;
text-transform: uppercase;
max-width: 90%;
}
.gretzz-box {
margin-top: 15px;
padding: 12px 20px;
border-radius: 10px;
background: linear-gradient(45deg, crimson, darkred);
color: white;
font-weight: bold;
animation: glow 1.2s infinite alternate;
max-width: 90%;
}
@keyframes glow {
from {
box-shadow: 0 0 8px red;
}
to {
box-shadow: 0 0 20px crimson, 0 0 30px darkred;
}
}
.music-box {
margin-top: 25px;
}
.play-button {
background-color: crimson;
color: white;
border: none;
padding: 10px 25px;
font-size: 1rem;
cursor: pointer;
border-radius: 6px;
transition: background 0.3s ease;
}
.play-button:hover {
background-color: darkred;
}
@media screen and (max-width: 480px) {
.main-text {
font-size: 1.4rem;
}
.blink {
font-size: 1.2rem;
}
.sub-text,
.sub-text-small {
font-size: 0.9rem;
}
.play-button {
font-size: 0.9rem;
padding: 8px 20px;
}
}
</style>
</head>
<body>
<div class="logo">
<img src="https://i.ibb.co/JWVcjxpH/githubrama.png" alt="RamaFounderNCS Logo">
</div>
<div class="blink"><strong>GITHUB BY RAMAFOUNDERNCS</strong></div>
<div class="main-text"><strong>SHELLBACKDOR BY NCS</strong></div>
<div class="sub-text">
SOURCE CODE BERADA DI REPOSITORI JIKA INGIN COPY PASTE MOHON CANTUMKAN SUMBER CODE NYA BERASAL DARI MANA (RAMAFOUNDERNCS), TOLONG HARGAI KARYA KAMI.
</div>
<div class="sub-text-small">
SUPPORT:
</div>
<div class="gretzz-box">
NEWBIE CYBER SECURITY
</div>
<div class="music-box">
<button class="play-button" onclick="document.getElementById('bg-music').play()">Play Music</button>
<audio id="bg-music" src="https://github.com/RamaFounderNCS/SoundNCS/raw/refs/heads/main/AnAngelLove.mp3"></audio>
</div>
</body>
</html>