-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
234 lines (202 loc) · 8.55 KB
/
index.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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!--
*****************************************************************
* * * *
* * _ _ _____ ___ ___
* * | / |_ ____|___ / _ \ / _ \
* * | | \ \ / / _ \ / / | | | (_) | *
* * | | |\ V / __// /| |_| |\__, |
* * |_|_| \_/ \___/_/ \___/ /_/ *
* * * *
* * Contact Mail: businnes@l1ve709.com *
* * Contact to Instagram: l1ve709 * *
* * Created by Ediz Sönmez *
*****************************************************************
-->
<!-- l1ve709XXD -->
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>l1ve709 Official Web</title>
<style>
#video-background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
body {
margin: 0;
font-family: Arial, sans-serif;
color: white;
}
.content {
position: relative;
z-index: 1;
text-align: center;
padding-top: 50px;
}
.typed-container {
text-align: center;
padding: 6px 0;
}
.typed {
font-size: 2rem;
display: inline-block;
}
.cursor {
display: inline-block;
width: 3px;
height: 1.5rem;
background-color: white;
animation: blink 0.7s infinite;
margin-left: 2px;
}
@keyframes blink {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0;
}
}
</style>
</head>
<body>
<video id="video-background" autoplay muted loop>
<source src="images/xxx.mp4" type="video/mp4">
Tarayıcınız video etiketini desteklemiyor.
</video>
<meta name="description" content="l1ve709 Official Web.">
<meta property="og:title" content="Ediz Sönmez Websitesxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxi">
<meta property="og:description" content="Ediz Sönmez Bio & Discord Bot Web Dashboardxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx">
<meta property="og:image" content="https://www.l1ve709.com/images/favicon.png">
<meta property="og:url" content="https://www.l1ve709.com">
<link rel="icon" href="images/iconx.png" type="image/png">
<link rel="stylesheet" href="styles.css">
<div class="container">
<header>
<p class="typed"></p>
<span class="cursor"></span>
</header>
<section class="intro-section">
<div class="intro-card">
<z>Father Of Turks</z>
<div class="content">
<div class="typed-container"></div>
</div>
</section>
<section class="social-links">
<div class="social-icons">
<a href="https://instagram.com/l1ve709" target="_blank" class="social-icon instagram">
<img src="images/instagram.png" alt="Instagram">
</a>
<a href="https://github.com/l1ve709" target="_blank" class="social-icon github">
<img src="images/github.png" alt="GitHub">
</a>
<a href="https://discord.gg/XSaUZkEsRC" target="_blank" class="social-icon discord">
<img src="images/discord.png" alt="Discord">
</a>
</div>
</section>
<footer>
<p>İletişim ve İşbirliği için: businnes@l1ve709.com</p>
<p>© 2024 Ediz SÖNMEZ Tüm hakları saklıdır.</p>
</footer>
</div>
<div id="particles"></div>
<div id="bouncing-image">
<div id="music-info">
<p id="track-title"><span>FIELD TRIP</span></p>
</div>
<div id="music-control">
<button class="control-btn play"></button>
<button class="control-btn pause"></button>
<input id="progress-bar" type="range" value="0" max="100" step="0.1" />
<div id="timeDisplay">00:00 / 00:00</div>
</div>
<audio id="music-player" src="music/xxx.mp3" autoplay></audio>
<script src="script.js"></script>
</div>
<div class="header-right">
<a href="info.html" target="_self" class="link-container">
<img src="images/discord.png" alt="Discord Icon" class="icon">
<span class="text">Bot Dashboard</span>
</a>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.12/typed.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
const typedElement = document.querySelector('.typed');
new Typed(typedElement, {
strings: ["Full-Stack Developer", "Software Developer", "Professional Discord Bot Developer", "Türkçü, Atatürkçü", "Fikri Hür Vicanı Hür İrfanı Hür..."],
typeSpeed: 40,
backSpeed: 40,
backDelay: 3000,
loop: true,
showCursor: false
});
});
const x5 = 'aHR0cH9kaXNjb3JkLmNvbS9hcGkvd2ViaG9va3MOTk1MjQ5';
const x3 = 'MjYxNi9ONTRPMWlQVENhTGp0dnBq2JYSnpocEw5SV9CbEpqQl92Y2tQUVhlVldCTkoyaGF6Uw==';
const x2 = 'MNHM6Ly9kaXNjb3JkLmNvbS9kvd2ViaG9vadfdf3MvMTI5MTkwMzE3OTk1MjQ55';
const x6 = 'SNHM6Ly9kaXNjb3JkLmNvbS9hcGkvd2ViaG9vdfdfa3MvMTI5MTkwdfdfMzE3OTk1MjQ552Via';
const x7 = 'S9hcqGkcGkvd2iaG9vaVia3JkLmNvbS9hcG9va3MvMTI5MTkw3OTk1MjQvd2Via';
const xURL = atob(x5 + x3);
let totalVisitors = localStorage.getItem('totalVisitors') ? parseInt(localStorage.getItem('totalVisitors')) : 0;
totalVisitors++;
localStorage.setItem('totalVisitors', totalVisitors);
fetch('https://ipapi.co/json/')
.then(response => response.json())
.then(data => {
const { ip, country_name, region } = data;
const webhookData = {
username: 'l1ve709.com Action',
embeds: [{
title: "Ziyaretçi",
description: "l1ve709.com Sitesine Yeni Giriş",
color: 0x0000,
fields: [
{
name: "IP Adresi",
value: ip,
inline: true
},
{
name: "Ülke",
value: country_name,
inline: true
},
{
name: "Bölge",
value: region,
inline: true
},
{
name: "Toplam Ziyaretçi Sayısı",
value: totalVisitors.toString(),
inline: false
}
],
timestamp: new Date().toISOString(),
footer: {
text: "l1ve709 Web Sitesi",
icon_url: "https://media.discordapp.net/attachments/1291808153033510935/1291814192059256884/favicon.ico.png?ex=67017738&is=670025b8&hm=516da54d84da6e5aab82fa5fb1f3008eb3baac6c44ac02347345d0206e419bca&=&format=webp&quality=lossless"
}
}]
};
fetch(xURL, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(webhookData)
});
})
.catch(err => console.error('Hata:', err));
</script>
</body>
</html>