help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • Blog
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
simple-portfolio
RSK World
simple-portfolio
RSK World Portfolio Website - Modern Web Development + Responsive Design + Interactive Animations + Payment Integration + PHP Backend + Professional Design
simple-portfolio
  • .gitignore568 B
  • LICENSE1.1 KB
  • README.md7.1 KB
  • about.html2.7 KB
  • contact.html3.5 KB
  • index.html2.9 KB
  • projects.html3 KB
  • script.js1007 B
  • style.css64.5 KB
admin.csscollaboration_manager.pyindex.htmlRELEASE_NOTES_v3.0.md.env.exampleconfig.pyscript.jscontact.html
index.html
Raw Download
Find: Go to:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Python Number Pattern Generator | 22 Pattern Types | Fractals | Mathematical Patterns | GUI & Web Interface | RSK World">
    <meta name="keywords" content="python pattern generator, number patterns, fractals, mathematical patterns, sierpinski triangle, mandelbrot set, hilbert curve, dragon curve, koch snowflake, cellular automaton, python gui, flask web app, pattern animation, svg export, rsk world">
    <meta name="author" content="Molla Samser">
    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Expires" content="0">
    <title>Python Number Pattern Generator - RSK World</title>

    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
    <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap" rel="stylesheet">
</head>

<body>
    <header>
        <div class="container">
            <div class="logo">RSK World</div>
            <nav>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="about.html">About</a></li>
                    <li><a href="projects.html">Projects</a></li>
                    <li><a href="contact.html">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <main>
        <section class="hero">
            <div class="container">
                <h1>Molla Samser</h1>
                <p>Founder of RSK World - Crafting digital experiences with precision and artistry.</p>
                <div class="buttons">
                    <a href="projects.html" class="btn">View Projects</a>
                    <a href="contact.html" class="btn btn-secondary">Get In Touch</a>
                </div>
            </div>
        </section>

        <section class="about">
            <div class="container">
                <h2>About RSK World</h2>
                <p>We create digital solutions that drive results. From web development to design, we deliver quality work that exceeds expectations.</p>
            </div>
        </section>
    </main>

    <footer>
        <div class="container">
            <div class="social-links">
                <a href="https://github.com/rs-world"><i class="fab fa-github"></i></a>
                <a href="https://linkedin.com/company/rs-world"><i class="fab fa-linkedin"></i></a>
                <a href="mailto:help@rskworld.in"><i class="fas fa-envelope"></i></a>
            </div>
            <p>&copy; 2024 RSK World. All rights reserved.</p>
        </div>
    </footer>

    <script src="script.js"></script>
</body>

</html>
68 lines•2.9 KB
markup
script.js
Raw Download
Find: Go to:
// Simple RSK World Portfolio JavaScript

document.addEventListener('DOMContentLoaded', () => {
    // Ensure cursor is visible (fix for previous custom cursor issues)
    document.documentElement.style.cursor = 'auto';
    document.body.style.cursor = 'auto';

    // Navigation Active State Management
    function updateActiveNavigation() {
        const currentPath = window.location.pathname;
        const currentPage = currentPath.split('/').pop() || 'index.html';

        // Remove active state from all navigation links
        const navLinks = document.querySelectorAll('nav a');
        navLinks.forEach(link => {
            link.classList.remove('active');
        });

        // Find and activate the current page link
        const activeLink = document.querySelector(`nav a[href="${currentPage}"]`);
        if (activeLink) {
            activeLink.classList.add('active');
        }
    }

    // Update navigation on page load
    updateActiveNavigation();
});
28 lines•1007 B
javascript
contact.html
Raw Download
Find: Go to:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Contact RSK World - Get in touch for your next project.">
    <meta name="author" content="Molla Samser">
    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Expires" content="0">
    <title>Contact Us - RSK World</title>

    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
    <link href="https://fonts.googleapis.com/css2?family=Outfit:wght=400;600;800&display=swap" rel="stylesheet">
</head>

<body>
    <header>
        <div class="container">
            <div class="logo">RSK World</div>
            <nav>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="about.html">About</a></li>
                    <li><a href="projects.html">Projects</a></li>
                    <li><a href="contact.html">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <main>
        <section class="hero">
            <div class="container">
                <h1>Contact Us</h1>
                <p>Ready to start your next project? Let's work together.</p>
            </div>
        </section>

        <section class="contact">
            <div class="container">
                <div class="contact-form">
                    <h2>Send us a message</h2>
                    <form action="mailto:help@rskworld.in" method="post" enctype="text/plain">
                        <div class="form-group">
                            <label for="name">Name</label>
                            <input type="text" id="name" name="name" required>
                        </div>
                        <div class="form-group">
                            <label for="email">Email</label>
                            <input type="email" id="email" name="email" required>
                        </div>
                        <div class="form-group">
                            <label for="message">Message</label>
                            <textarea id="message" name="message" rows="5" required></textarea>
                        </div>
                        <button type="submit" class="btn">Send Message</button>
                    </form>
                </div>

                <div class="contact-info">
                    <h2>Get in touch</h2>
                    <p><i class="fas fa-envelope"></i> help@rskworld.in</p>
                    <p><i class="fas fa-phone"></i> +91 93305 39277</p>
                    <p><i class="fas fa-map-marker-alt"></i> Nuthathat, West Bengal, India</p>
                </div>
            </div>
        </section>
    </main>

    <footer>
        <div class="container">
            <div class="social-links">
                <a href="https://github.com/rs-world"><i class="fab fa-github"></i></a>
                <a href="https://linkedin.com/company/rs-world"><i class="fab fa-linkedin"></i></a>
                <a href="mailto:help@rskworld.in"><i class="fas fa-envelope"></i></a>
            </div>
            <p>&copy; 2024 RSK World. All rights reserved.</p>
        </div>
    </footer>

    <script src="script.js"></script>
</body>
</html>
85 lines•3.5 KB
markup
🚀 Support RSK World

Subscribe to our YouTube channel for latest tutorials & updates!



Click subscribe & support our work ❤️

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer