Skip to content

Instantly share code, notes, and snippets.

@serajmoner20041-ai
Created February 28, 2026 03:56
Show Gist options
  • Select an option

  • Save serajmoner20041-ai/d19cf3ca00718219f3d28e41397b075f to your computer and use it in GitHub Desktop.

Select an option

Save serajmoner20041-ai/d19cf3ca00718219f3d28e41397b075f to your computer and use it in GitHub Desktop.
SERAJ STORE
@serajmoner20041-ai
Copy link
Author

``!DOCTYPE html>

<title>سراج ستور | Seraj Store - للمنتجات الرقمية</title> <style> :root { --primary-color: #1a237e; /* كحلي ملكي */ --accent-color: #d4af37; /* ذهبي */ --text-color: #333; --light-bg: #f4f4f4; }
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin: 0;
        padding: 0;
        background-color: var(--light-bg);
        color: var(--text-color);
    }

    header {
        background-color: var(--primary-color);
        color: white;
        padding: 1rem 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    /* تنسيق اللوقو الجديد */
    .logo-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-img {
        height: 40px; /* تحكم في طول اللوقو من هنا */
        width: auto;
    }

    .logo-text {
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--accent-color);
    }

    nav a {
        color: white;
        text-decoration: none;
        margin-right: 1.5rem;
        transition: 0.3s;
    }

    nav a:hover {
        color: var(--accent-color);
    }

    .hero {
        background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.8)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 5rem 5%;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .btn {
        background-color: var(--accent-color);
        color: var(--primary-color);
        padding: 0.8rem 2rem;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        transition: 0.3s;
    }

    .btn:hover {
        background-color: white;
        transform: scale(1.05);
    }

    .products {
        padding: 4rem 5%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .product-card {
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        transition: 0.3s;
    }

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card h3 {
        color: var(--primary-color);
    }

    .price {
        font-size: 1.5rem;
        color: var(--accent-color);
        font-weight: bold;
        display: block;
        margin: 1rem 0;
    }

    footer {
        background-color: #222;
        color: #ccc;
        text-align: center;
        padding: 2rem;
        margin-top: 3rem;
    }
</style>
<header>
    <div class="logo-container">
        <img src="https://ibb.co/d4NMshtd" alt="Seraj Store Logo" class="logo-img">
        <span class="logo-text">سراج ستور</span>
    </div>
    <nav>
        <a href="#">الرئيسية</a>
        <a href="#">المنتجات</a>
        <a href="#">سياسة الاسترجاع</a>
    </nav>
</header>

<section class="hero">
    <h1>أنِر طريقك بالحلول الرقمية</h1>
    <p>متجرك الموثوق للحصول على أفضل الكتب، القوالب، والأدوات الرقمية بضغطة زر.</p>
    <a href="#shop" class="btn">تصفح المنتجات الآن</a>
</section>

<h2 style="text-align:center; margin-top:3rem;">أحدث المنتجات الرقمية</h2>

<section class="products" id="shop">
    <div class="product-card">
        <h3>كتاب "أسرار النجاح الرقمي"</h3>
        <p>دليل شامل للبدء في العمل عبر الإنترنت.</p>
        <span class="price">49 ريال</span>
        <a href="#" class="btn">شراء المنتج</a>
    </div>

    <div class="product-card">
        <h3>قالب متجر احترافي</h3>
        <p>تصميم عصري جاهز للاستخدام الفوري.</p>
        <span class="price">99 ريال</span>
        <a href="#" class="btn">شراء المنتج</a>
    </div>

    <div class="product-card">
        <h3>دورة إعلانات الجوال</h3>
        <p>تعلم كيف تبيع منتجاتك الرقمية بسهولة.</p>
        <span class="price">150 ريال</span>
        <a href="#" class="btn">شراء المنتج</a>
    </div>
</section>

<footer>
    <p>&copy; 2026 سراج ستور - جميع الحقوق محفوظة</p>
    <p>بني بكل فخر ليناسب تطلعاتكم</p>
</footer>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment