index.html

.html 2026/02/21 11:28:09 13.27 KB

<!DOCTYPE html>

پیش‌نمایش محتوا
<!DOCTYPE html>
<html dir="rtl" lang="fa-IR">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>سورس کد دیکشنری با بیسیک فور اندروید b4a - دانلود فایل تخصصی</title>
    <meta name="description" content="دانلود فایل سورس کد دیکشنری با بیسیک فور اندروید b4a - ارائه شده توسط magicfile.ir">
    <style>
        :root {
            --primary: #810084;
            --secondary: #5c0084;
            --accent: #ff5d00;
            --light: #f8f9fa;
            --dark: #343a40;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'B Traffic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.8;
            color: var(--dark);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.3);
        }
        
        .header {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: float 20s linear infinite;
        }
        
        @keyframes float {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .header h1 {
            font-family: 'B Mehr', 'Segoe UI', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .header .badge {
            display: inline-block;
            background: var(--accent);
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 1.1rem;
            margin-top: 10px;
            box-shadow: 0 5px 15px rgba(255,93,0,0.3);
            transition: transform 0.3s ease;
        }
        
        .header .badge:hover {
            transform: translateY(-3px);
        }
        
        .content {
            padding: 40px;
        }
        
        .intro {
            font-size: 1.3rem;
            text-align: center;
            color: var(--primary);
            margin-bottom: 30px;
            line-height: 1.6;
            background: linear-gradient(90deg, #f8f9fa, #e9ecef);
            padding: 25px;
            border-radius: 15px;
            border-right: 5px solid var(--accent);
        }
        
        .featured-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
            border: 3px solid white;
        }
        
        .featured-image:hover {
            transform: scale(1.02);
        }
        
        .download-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin: 40px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .download-section::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: slide 20s linear infinite;
        }
        
        @keyframes slide {
            0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
            100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
        }
        
        .download-btn {
            display: inline-block;
            background: linear-gradient(to right, #ff9a00, #ff5d00);
            color: white;
            padding: 18px 45px;
            font-size: 1.4rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            margin: 20px 0;
            transition: all 0.4s ease;
            box-shadow: 0 10px 25px rgba(255,93,0,0.4);
            position: relative;
            z-index: 1;
            border: none;
            cursor: pointer;
            font-family: 'B Mehr', sans-serif;
        }
        
        .download-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255,93,0,0.6);
            background: linear-gradient(to right, #ff5d00, #ff9a00);
            color: white;
        }
        
        .download-btn:active {
            transform: translateY(0) scale(1);
        }
        
        .download-btn::after {
            content: '📥';
            margin-right: 10px;
            font-size: 1.6rem;
            vertical-align: middle;
        }
        
        .tags {
            margin: 30px 0;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 15px;
            text-align: center;
        }
        
        .tag {
            display: inline-block;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 8px 20px;
            margin: 8px;
            border-radius: 25px;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(106,17,203,0.2);
        }
        
        .tag:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(106,17,203,0.4);
        }
        
        .additional-info {
            background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
            padding: 30px;
            border-radius: 15px;
            margin-top: 40px;
            border-left: 5px solid var(--primary);
        }
        
        .info-box {
            background: white;
            padding: 25px;
            border-radius: 12px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.08);
        }
        
        .info-box h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-family: 'B Mehr', sans-serif;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-box h3::before {
            content: '✅';
        }
        
        .footer {
            text-align: center;
            padding: 30px;
            background: var(--dark);
            color: white;
            margin-top: 50px;
            border-radius: 0 0 20px 20px;
        }
        
        .footer a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .container {
                border-radius: 10px;
                margin: 10px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .content {
                padding: 20px;
            }
            
            .download-btn {
                padding: 15px 30px;
                font-size: 1.2rem;
                width: 100%;
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255,93,0,0.7); }
            70% { box-shadow: 0 0 0 20px rgba(255,93,0,0); }
            100% { box-shadow: 0 0 0 0 rgba(255,93,0,0); }
        }
        
        .highlight {
            background: linear-gradient(120deg, #ff9a9e 0%, #fad0c4 100%);
            padding: 3px 10px;
            border-radius: 5px;
            font-weight: bold;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <h1>✨ سورس کد دیکشنری با بیسیک فور اندروید b4a ✨</h1>
            <div class="badge">فایل تخصصی دانلودی</div>
        </div>
        
        <div class="content">
            <div class="intro">
                👋 کاربران گرامی، فایل تخصصی <span class="highlight">سورس کد دیکشنری با بیسیک فور اندروید b4a</span> به صورت  برای شما عزیزان آماده دانلود می‌باشد. برای دریافت فایل، بر روی دکمه دانلود کلیک نمایید.
            </div>
            
            <img src="https://img.magicfile.ir/2021-3-28/dd3c96a77eee08df515422f36373199c.jpg" alt="سورس کد دیکشنری با بیسیک فور اندروید b4a" class="featured-image">
            
            <div class="download-section">
                <h2 style="margin-bottom: 25px; font-size: 1.8rem; position: relative; z-index: 1;">🎯 لینک دانلود مستقیم فایل</h2>
                <p style="margin-bottom: 25px; font-size: 1.1rem; position: relative; z-index: 1;">فایل با کیفیت بالا و حجم بهینه شده</p>
                <a href="https://magicfile.ir/product/%d8%b3%d9%88%d8%b1%d8%b3-%da%a9%d8%af-%d8%af%d9%8a%da%a9%d8%b4%d9%86%d8%b1%d9%8a-%d8%a8%d8%a7-%d8%a8%d9%8a%d8%b3%d9%8a%da%a9-%d9%81%d9%88%d8%b1-%d8%a7%d9%86%d8%af%d8%b1%d9%88%d9%8a%d8%af/" class="download-btn pulse">دانلود مستقیم و سریع</a>
                <p style="margin-top: 20px; font-size: 0.95rem; opacity: 0.9; position: relative; z-index: 1;">⏱️ زمان تخمینی دانلود: کمتر از 1 دقیقه</p>
            </div>
            
            <div class="info-box">
                <h3>📋 مشخصات فایل</h3>
                <ul style="list-style-type: none; padding-right: 20px;">
                    <li style="padding: 8px 0; border-bottom: 1px dashed #dee2e6;">✅ فرمت‌های موجود: ZIP, TXT, PHP, JS, CSS, Python</li>
                    <li style="padding: 8px 0; border-bottom: 1px dashed #dee2e6;">✅ حجم بهینه‌سازی شده برای دانلود سریع</li>
                    <li style="padding: 8px 0; border-bottom: 1px dashed #dee2e6;">✅ سازگار با تمامی دستگاه‌ها و سیستم‌عامل‌ها</li>
                    <li style="padding: 8px 0;">✅ پشتیبانی از زبان فارسی به طور کامل</li>
                </ul>
            </div>
            
            <div class="tags">
                <h3 style="color: var(--primary); margin-bottom: 20px; font-family: 'B Mehr', sans-serif;">🏷️ برچسب‌های مرتبط</h3>
                <span class="tag">#بدون_برچسب</span>
            </div>
            
            <div class="additional-info">
                <h3 style="color: var(--primary); margin-bottom: 20px; font-family: 'B Mehr', sans-serif;">ℹ️ اطلاعات تکمیلی</h3>
                <p>این فایل بخشی از مجموعه‌ای ارزشمند از منابع آموزشی و ابزارهای تخصصی است که توسط تیم <strong>magicfile.ir</strong> گردآوری و ارائه شده است. برای دسترسی به صدها فایل مفید دیگر، می‌توانید از بخش جستجوی سایت استفاده نمایید.</p>
                <div style="text-align: center; margin-top: 25px;">
                    <a href="https://magicfile.ir" style="display: inline-block; background: var(--primary); color: white; padding: 12px 30px; border-radius: 25px; text-decoration: none; transition: all 0.3s ease;">بازدید از همه فایل‌ها</a>
                </div>
            </div>
        </div>
        
        <div class="footer">
            <p>© 2026 - کلیه حقوق محفوظ است | ارائه شده توسط <a href="https://magicfile.ir">magicfile.ir</a></p>
            <p style="margin-top: 15px; font-size: 0.9rem; opacity: 0.8;">تیم پشتیبانی: پاسخگوی سوالات شما در 24 ساعت شبانه‌روز</p>
        </div>
    </div>
</body>
</html>
اطلاعات فایل
نام فایل: index.html
مسیر: 1/2044
نوع: HTML
حجم: 13.27 KB
تاریخ ایجاد: 2026/02/21 11:28:09
تاریخ تغییر: 2026/02/21 11:28:09
عملیات‌ها