210
Подписчики
-1424 часа
-247 дней
-16730 дней
Архив постов
خب کیرم تو فیس تخمیتون بره پلشتای تازه به دوران رسیده ی اوبی کونی مونی های احمق شما با این سنتون دارید به ما می پرید و کسشر تفت میدید و بعدش لاتی پر میکنید کسخلای نوب شما هنوز شاشتون کف نکرده که بخواید با این سنتون برای من لاتی پر کنید نوچه اید همتون کم مونده یه مشت کلاس ششمی که هنوز رادیکال و جذر و امثال این چیز ها یاد نگرفته به ما بزنه کونیا یه بار این نولیت کیر خوری اضافه کرد عکس لختیش توی استخر پخش شد گوکسات هم ده ماه پیش عکسشو گذاشت پروفایلش الان گردن نمیگیره میگه برای 4 سال پیشه کونیا هر کاری کنید نمیتونید مثل بهراد #ویکتور باشید کسکشا میگیرم کیرمو میزنم تو سک و صورتتون تا بفهمید با کی طرفید !
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Vazirmatn&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Vazirmatn', sans-serif;
background-color: #000;
color: #fff;
direction: rtl;
}
header {
background-color: #333;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
position: sticky;
top: 0;
padding: 10px;
text-align: center;
}
table {
width: 100%;
max-width: 600px;
margin: 20px auto;
border-collapse: collapse;
animation: fadeIn 1s;
}
th, td {
padding: 10px;
border: 1px solid #444;
text-align: right;
}
th {
background-color: #555;
}
tr:nth-child(even) {
background-color: #222;
}
tr:hover {
background-color: #444;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@media (max-width: 600px) {
table {
font-size: 14px;
}
}
</style>
<title>بهترین مبارزان جهان</title>
</head>
<body>
<header>
<h1>بهترین مبارزان جهان</h1>
</header>
<table>
<tr>
<th>نام مبارز</th>
<th>کشور</th>
<th>ویژگیهای کلیدی</th>
</tr>
<tr>
<td>مبارز ۱</td>
<td>آمریکا</td>
<td>ویژگی ۱، ویژگی ۲</td>
</tr>
<tr>
<td>مبارز ۲</td>
<td>روسیه</td>
<td>ویژگی ۱، ویژگی ۲</td>
</tr>
<tr>
<td>مبارز ۳</td>
<td>چین</td>
<td>ویژگی ۱، ویژگی ۲</td>
</tr>
<tr>
<td>مبارز ۴</td>
<td>اروپا</td>
<td>ویژگی ۱، ویژگی ۲</td>
</tr>
<tr>
<td>مبارز ۵</td>
<td>آمریکا</td>
<td>ویژگی ۱، ویژگی ۲</td>
</tr>
<tr>
<td>مبارز ۶</td>
<td>روسیه</td>
<td>ویژگی ۱، ویژگی ۲</td>
</tr>
<tr>
<td>مبارز ۷</td>
<td>چین</td>
<td>ویژگی ۱، ویژگی ۲</td>
</tr>
</table>
</body>
</html>
کل سایبری: Design a table to extract information about 7 of the best fighters in the world and set it in Persian, including meta tags to specify charset and viewport for responsive design and CSS formatting to use the "Vazirmatn" font. All elements are defined by default with zero margin and padding. The background color and text color are set and the text direction is set to right (rtl) and the header at the top of the page is designed with a dark color, shadow and sticky property to maintain its position during scrolling. CSS animations are used for beautification and a matte black background and welcome are displayed and colors and styles for rows and cells including background colors, text color, and hover effects and include the name of the fighter, the country of manufacture, and key features of each fighter. Information about seven different fighters, including American, Russian, Chinese, and European fighters, is provided, with special responsive styling for better display of tables on small devices, and a maximum width of 600 pixels to reduce font size.
