Selamlar hocalarım dün yapmış olduğum "TürkHackTeam İndex" ilk yaptığım bir çalışma idi,
Cevaplarınızı dikkate alarak yeni bir index tasarlamak istedim feedback'lerinizi bekliyorum iyi kullanımlar , iyi forumlar dilerim.
Cevaplarınızı dikkate alarak yeni bir index tasarlamak istedim feedback'lerinizi bekliyorum iyi kullanımlar , iyi forumlar dilerim.
HTML;
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacked By TurkHackTeam</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet"> <!-- Google Fonts -->
<style>
/* CSS kodlarınızı buraya ekleyin */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
overflow: hidden;
font-family: 'Poppins', sans-serif;
}
.background-overlay {
background-image: url("https://trthaberstatic.cdn.wp.trt.com.tr/resimler/1224000/1224454.jpg");
background-size: cover;
background-position: center;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
filter: brightness(0.5);
animation: fadeInOut 10s infinite alternate, bassEffect 5s ease-in-out infinite;
transform-origin: center center;
}
@keyframes fadeInOut {
0% {
filter: brightness(0.3);
}
50% {
filter: brightness(0.5);
}
100% {
filter: brightness(0.3);
}
}
@keyframes bassEffect {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
/* CRT TV Satır Kayması (Scanline) Efekti */
.scanline-effect {
position: absolute;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
0deg,
rgba(255, 255, 255, 0.05) 0,
rgba(255, 255, 255, 0.05) 2px,
rgba(0, 0, 0, 0.05) 2px,
rgba(0, 0, 0, 0.05) 4px
);
z-index: 5;
opacity: 0.5;
animation: scanline 0.1s steps(5) infinite;
}
@keyframes scanline {
0% {
background-position: 0 0;
}
100% {
background-position: 0 100%;
}
}
/* Modern yazı stili */
.quote {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
color: white;
font-family: 'Poppins', sans-serif;
font-size: 1.2rem;
font-style: italic;
text-align: center;
max-width: 80%;
padding: 10px;
background: rgba(0, 0, 0, 0.5);
border-radius: 10px;
}
/* Logo stili */
.logo {
position: absolute;
top: 20px;
left: 50%;
transform: translate(-50%);
z-index: 10;
width: 250px;
}
/* Ortadaki Yazı */
.center-text, .center2-text {
position: absolute;
left: 50%;
transform: translateX(-50%);
color: white;
font-size: 1.2rem;
font-weight: 600;
font-style: italic;
text-align: center;
z-index: 10;
opacity: 0; /* Başlangıçta görünmez */
animation: fadeInOutText 5s infinite alternate;
}
.center-text {
top: 75%;
}
.center2-text {
top: 79%;
}
/* Alt Yazı Stili */
.subtitle {
position: absolute;
top: 300px;
left: 50%;
transform: translateX(-50%);
color: #FFD700;
font-size: 1.5rem;
font-weight: 700;
text-align: center;
opacity: 0;
animation: fadeInOutText 5s infinite alternate;
}
@keyframes fadeInOutText {
0%, 100% {
opacity: 0;
}
50% {
opacity: 1;
}
}
/* Ekstra alt yazı */
.extra-subtitle {
position: absolute;
top: 330px;
left: 50%;
transform: translateX(-50%);
color: white;
font-size: 1.5rem;
font-style: italic;
text-align: center;
font-weight: 700;
}
/* English alt yazı */
.english-subtitle {
position: absolute;
top: 370px;
left: 50%;
transform: translateX(-50%);
color: white;
font-style: italic;
font-size: 1.2rem;
text-align: center;
font-weight: 500;
}
.highlight {
color: white;
}
</style>
</head>
<body>
<div class="background-overlay"></div>
<div class="scanline-effect"></div>
<div class="quote">
Gençler! Cesaretimizi kuvvetlendiren ve devam ettiren sizsiniz. Siz, almakta olduğunuz eğitim ve kültür ile insanlık meziyetinin, vatan sevgisinin, fikir özgürlüğünün en değerli simgesi olacaksınız. Ey yükselen yeni kuşak! Gelecek sizindir. Cumhuriyeti biz kurduk; onu yükseltecek ve devam ettirecek sizsiniz!
</div>
<!-- TürkHackTeam Logosu -->
<img src=" " alt="TürkHackTeam Logo" class="logo">
" alt="TürkHackTeam Logo" class="logo">
<!-- Ortadaki yazı -->
<div class="center-text">
</div>
<div class="center2-text">
Cyber Security Platform
</div>
<div class="subtitle">
Hacked By <span class="highlight">AimPluqqed!</span>
</div>
<div class="extra-subtitle">
Bu site TürkHackTeam tarafından hacklenmiştir.
</div>
<div class="english-subtitle"
(This website was hacked by TurkHackTeam.)
</div>
</body>
</html>
HTML TEXT DOSYASI
TEXT DOSYASI LİNK VİRÜS TOTAL
TEXT DOSYASI VİRÜS TOTAL
Son düzenleme:



