ABOUT ME

🔗 What is Boilink?

 In today's fast-paced digital world, how you share your content matters just as much as the content itself. Whether you're a creator, marketer, entrepreneur, or business, Boilink is here to transform the way you manage, share, and track links.



🔗 What is Boilink?

Boilink is an intelligent link management platform that allows you to create customized, branded, and trackable links for your content — all in one place. With Boilink, you're not just shortening URLs — you're creating a powerful bridge between your content and your audience.

✅ Why Boilink?

💡 Smart Link Shortening

Turn long, messy URLs into clean, short, and memorable links. Perfect for social media, marketing campaigns, email newsletters, and more.

🎯 Real-Time Analytics

Track every click with detailed metrics: see where your traffic is coming from, what devices people use, and how your links perform over time.

🔥 Bio-Link Pages

Build a personalized landing page to house all your important links — ideal for Instagram, TikTok, or any platform with a single link in bio. Think of it as your digital business card with superpowers.

🧩 Custom Domains & Branding

Put your brand front and center by using your own custom domain. Boost trust, visibility, and brand recognition with every link you share.

🛡️ Security & Reliability

Boilink is built with top-tier infrastructure and privacy features. Your links are safe, secure, and always online — even when you're not.

🌐 Who is Boilink for?

Content Creators & Influencers – Share your latest videos, posts, and products in a beautifully organized link-in-bio page.

Marketers & Agencies – Track campaigns, A/B test links, and optimize performance with actionable insights.

Startups & Businesses – Promote products, track leads, and present your brand consistently across platforms.

🚀 Start in Seconds

Creating your first Boilink is easy:

Sign up for free

Create your custom short link or bio page

Share and track performance instantly

No code. No clutter. Just smarter links.

📈 Join Thousands Already Linking Smarter

Boilink is trusted by creators, brands, and teams around the world. Ready to take your links to the next level?

HTML Script

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Click Bite - Latest Movies Hub</title>

    <style>

        /* UPDATED: Black and Red Color Theme */

        :root {

            --primary: #e50914; /* Main Red (Netflix Red) */

            --secondary: #ff4d4d; /* Lighter/Accent Red */

            --dark: #000000; /* Pure Black Background */

            --light: #ffffff; /* White Text */

            --hollywood: var(--primary);

            --bollywood: var(--secondary);

        }

        

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

        

        body {

            background-color: var(--dark);

            color: var(--light);

            font-family: 'Poppins', sans-serif;

            overflow-x: hidden;

            min-height: 100vh;

            background-image: 

                radial-gradient(circle at 20% 30%, rgba(229, 9, 20, 0.15) 0%, transparent 25%),

                radial-gradient(circle at 80% 70%, rgba(255, 77, 77, 0.1) 0%, transparent 25%);

        }

        

        /* Particle Background */

        .particles {

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            z-index: -1;

            pointer-events: none;

        }

        

        .particle {

            position: absolute;

            width: 2px;

            height: 2px;

            background: rgba(229, 9, 20, 0.5); /* Red particles */

            border-radius: 50%;

            animation: floatParticle 15s infinite linear;

        }

        

        @keyframes floatParticle {

            0% { transform: translateY(0) translateX(0); opacity: 0; }

            50% { opacity: 1; }

            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }

        }

        

        .container {

            max-width: 1200px;

            margin: 0 auto;

            padding: 2rem;

        }

        

        header {

            text-align: center;

            margin-bottom: 3rem;

            position: relative;

        }

        

        h1 {

            font-family: 'Bungee Shade', cursive;

            font-size: 4rem;

            margin-bottom: 1rem;

            /* UPDATED: Red Gradient */

            background: linear-gradient(45deg, var(--secondary), var(--primary));

            -webkit-background-clip: text;

            background-clip: text;

            color: transparent;

            text-shadow: 0 0 15px rgba(229, 9, 20, 0.6);

            letter-spacing: 2px;

            animation: glow 2s ease-in-out infinite alternate;

        }

        

        @keyframes glow {

             /* UPDATED: Red Glow */

            0% { text-shadow: 0 0 10px rgba(229, 9, 20, 0.5); }

            100% { text-shadow: 0 0 20px rgba(255, 77, 77, 0.7); }

        }

        

        .subtitle {

            font-size: 1.3rem;

            opacity: 0.9;

            margin-bottom: 2rem;

            font-weight: 300;

            letter-spacing: 1px;

        }

        

        .section-title {

            font-size: 2.2rem;

            margin: 2rem 0 1.5rem;

            position: relative;

            display: inline-block;

            font-family: 'Poppins', sans-serif;

            font-weight: 700;

        }

        

        .section-title::after {

            content: '';

            position: absolute;

            bottom: -10px;

            left: 0;

            width: 100%;

            height: 4px;

            /* UPDATED: Red Gradient for underline */

            background: linear-gradient(90deg, var(--primary), var(--secondary));

            border-radius: 2px;

        }

        

        .hollywood-title {

            color: var(--hollywood);

            text-shadow: 0 0 10px rgba(229, 9, 20, 0.3);

        }

        

        .bollywood-title {

            color: var(--bollywood);

            text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);

        }

        

        .movies-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 2rem;

            margin-bottom: 4rem;

        }

        

        .movie-card {

            background: rgba(30, 30, 30, 0.6);

            border-radius: 15px;

            overflow: hidden;

            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

            transition: transform 0.3s, box-shadow 0.3s;

            position: relative;

            backdrop-filter: blur(10px);

            border: 1px solid rgba(229, 9, 20, 0.2);

        }

        

        .movie-card:hover {

            transform: translateY(-10px);

            box-shadow: 0 20px 40px rgba(229, 9, 20, 0.4);

            border-color: var(--primary);

        }

        

        .movie-poster {

            width: 100%;

            height: 400px;

            object-fit: cover;

            border-bottom: 3px solid var(--primary);

        }

        

        .more-movies-card {

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            text-align: center;

            cursor: pointer;

            background: rgba(30, 30, 30, 0.6);

            border: 2px dashed rgba(255, 255, 255, 0.3);

            transition: all 0.3s;

        }

        

        .more-movies-card:hover {

            background: rgba(50, 50, 50, 0.7);

            border-color: var(--primary);

            transform: scale(1.02);

        }

        

        .more-movies-icon {

            font-size: 3rem;

            margin-bottom: 1rem;

            color: var(--primary);

            animation: pulse 2s infinite;

        }

        

        @keyframes pulse {

            0% { transform: scale(1); }

            50% { transform: scale(1.1); }

            100% { transform: scale(1); }

        }

        

        .more-movies-text {

            font-size: 1.5rem;

            font-weight: 600;

            margin-bottom: 0.5rem;

        }

        

        .more-movies-subtext {

            font-size: 0.9rem;

            opacity: 0.8;

        }

        

        .movie-info {

            padding: 1.5rem;

        }

        

        .movie-title {

            font-size: 1.6rem;

            margin-bottom: 0.5rem;

            font-weight: 600;

        }

        

        .movie-year {

            color: rgba(255, 255, 255, 0.7);

            margin-bottom: 1rem;

            font-size: 0.95rem;

        }

        

        .movie-rating {

            display: flex;

            align-items: center;

            margin-bottom: 1rem;

        }

        

        .stars {

            color: var(--secondary); /* Stars color updated to accent red */

            margin-right: 0.5rem;

        }

        

        .buttons {

            display: flex;

            gap: 1rem;

            margin-top: 1.5rem;

        }

        

        .btn {

            padding: 0.9rem 1.8rem;

            border: none;

            border-radius: 50px;

            font-weight: 600;

            cursor: pointer;

            transition: all 0.3s;

            display: flex;

            align-items: center;

            justify-content: center;

            flex: 1;

            position: relative;

            overflow: hidden;

            z-index: 1;

        }

        

        .btn-watch {

            /* UPDATED: Red Gradient Button */

            background: linear-gradient(45deg, var(--primary), var(--secondary));

            color: white;

            box-shadow: 0 5px 20px rgba(229, 9, 20, 0.5);

        }

        

        .btn-download {

            background: rgba(255, 255, 255, 0.1);

            color: white;

            border: 2px solid var(--primary);

            box-shadow: 0 5px 20px rgba(229, 9, 20, 0.3);

        }

        

        .btn:hover {

            transform: translateY(-5px);

            box-shadow: 0 10px 25px rgba(229, 9, 20, 0.7);

        }

        

        .btn:active {

            transform: translateY(0);

        }

        

        .btn i {

            margin-right: 8px;

            font-size: 1.2rem;

        }

        

        /* Neon Pulse Effect on Buttons */

        .btn-watch:hover::before {

            content: '';

            position: absolute;

            top: -50%;

            left: -50%;

            width: 200%;

            height: 200%;

            background: linear-gradient(

                45deg,

                transparent,

                rgba(255, 255, 255, 0.3),

                transparent

            );

            transform: rotate(45deg);

            animation: pulse 1.5s infinite;

            z-index: -1;

        }

        

        footer {

            text-align: center;

            margin-top: 4rem;

            padding: 2rem 0;

            border-top: 1px solid rgba(229, 9, 20, 0.2);

        }

        

        .footer-text {

            opacity: 0.7;

            font-size: 0.9rem;

            letter-spacing: 1px;

        }

        

        @media (max-width: 768px) {

            h1 {

                font-size: 2.8rem;

            }

            

            .movies-grid {

                grid-template-columns: 1fr;

            }

            

            .buttons {

                flex-direction: column;

            }

        }

        

        /* Floating Animation */

        @keyframes float {

            0%, 100% { transform: translateY(0); }

            50% { transform: translateY(-15px); }

        }

        

        .floating {

            animation: float 4s ease-in-out infinite;

        }

    </style>

    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">

    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Bungee+Shade&display=swap" rel="stylesheet">

</head>

<body>

    <!-- Animated Particles Background -->

    <div class="particles" id="particles"></div>

    

    <div class="container">

        <header>

            <h1>2025 Hollywood & Bollywood Movies</h1>

            <p class="subtitle">Watch or Download the Hottest Hollywood & Bollywood Movies</p>

        </header>

        

        <h2 class="section-title hollywood-title">🔥 Top Hollywood Movies</h2>

        <div class="movies-grid">

            <!-- Movie 1 -->

            <div class="movie-card floating" style="animation-delay: 0.1s;">

                <img src="https://images.justwatch.com/poster/97855992/s718/searching.jpg" alt="Searching" class="movie-poster">

                <div class="movie-info">

                    <h3 class="movie-title">The Searching</h3>

                    <p class="movie-year">Lastest • Mystery • 1h 42m</p>

                    <div class="movie-rating">

                        <div class="stars">

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star-half-alt"></i>

                        </div>

                        <span>7.6/10</span>

                    </div>

                    <div class="buttons">

                        <button class="btn btn-watch" onclick="openGoogle()">

                            <i class="fas fa-play"></i> Watch Now

                        </button>

                        <button class="btn btn-download" onclick="openGoogle()">

                            <i class="fas fa-download"></i> Download

                        </button>

                    </div>

                </div>

            </div>

            

            <!-- Movie 2 -->

            <div class="movie-card floating" style="animation-delay: 0.3s;">

                <img src="https://m.media-amazon.com/images/M/MV5BNGViZWZmM2EtNGYzZi00ZDAyLTk3ODMtNzIyZTBjN2Y1NmM1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg" alt="The Thing" class="movie-poster">

                <div class="movie-info">

                    <h3 class="movie-title">The Thing</h3>

                    <p class="movie-year">Latest • Horror • 1h 49m</p>

                    <div class="movie-rating">

                        <div class="stars">

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                        </div>

                        <span>8.2/10</span>

                    </div>

                    <div class="buttons">

                        <button class="btn btn-watch" onclick="openGoogle()">

                            <i class="fas fa-play"></i> Watch Now

                        </button>

                        <button class="btn btn-download" onclick="openGoogle()">

                            <i class="fas fa-download"></i> Download

                        </button>

                    </div>

                </div>

            </div>

            

            <!-- Movie 3 -->

            <div class="movie-card floating" style="animation-delay: 0.5s;">

                <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQgZcEH_u1X0TusXC6jqKFFf4etg4S4bzOOVA&s" alt="Extraction 3" class="movie-poster">

                <div class="movie-info">

                    <h3 class="movie-title">Extraction 3</h3>

                    <p class="movie-year">Latest • Action • 2h 1m</p>

                    <div class="movie-rating">

                        <div class="stars">

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="far fa-star"></i>

                        </div>

                        <span>7.8/10</span>

                    </div>

                    <div class="buttons">

                        <button class="btn btn-watch" onclick="openGoogle()">

                            <i class="fas fa-play"></i> Watch Now

                        </button>

                        <button class="btn btn-download" onclick="openGoogle()">

                            <i class="fas fa-download"></i> Download

                        </button>

                    </div>

                </div>

            </div>

            

            <!-- More Hollywood Movies Card -->

            <div class="movie-card more-movies-card floating" style="animation-delay: 0.7s;" onclick="openMovieSite()">

                <div class="more-movies-icon">

                    <i class="fas fa-film"></i>

                </div>

                <h3 class="more-movies-text">More Latest Movies</h3>

                <p class="more-movies-subtext">Click to explore more</p>

            </div>

        </div>

        

        <h2 class="section-title bollywood-title">🎬 Top Bollywood Movies</h2>

        <div class="movies-grid">

            <!-- Movie 1 -->

            <div class="movie-card floating" style="animation-delay: 0.2s;">

                <img src="https://upload.wikimedia.org/wikipedia/en/thumb/e/e4/Bhool_Bhulaiyaa_3_poster.jpg/250px-Bhool_Bhulaiyaa_3_poster.jpg" alt="Bhool Bhulaiyaa 3" class="movie-poster">

                <div class="movie-info">

                    <h3 class="movie-title">Bhool Bhulaiyaa 3 </h3>

                    <p class="movie-year">Latest • Horror Comedy • 2h 26m</p>

                    <div class="movie-rating">

                        <div class="stars">

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="far fa-star"></i>

                        </div>

                        <span>7.2/10</span>

                    </div>

                    <div class="buttons">

                        <button class="btn btn-watch" onclick="openGoogle()">

                            <i class="fas fa-play"></i> Watch Now

                        </button>

                        <button class="btn btn-download" onclick="openGoogle()">

                            <i class="fas fa-download"></i> Download

                        </button>

                    </div>

                </div>

            </div>

            

            <!-- Movie 2 -->

            <div class="movie-card floating" style="animation-delay: 0.4s;">

                <img src="https://m.media-amazon.com/images/M/MV5BZmIzMThjNTYtNjkwZi00NmM3LTliNGItZWIxYTUwMGU1YzM0XkEyXkFqcGc@._V1_.jpg" alt="Housefull 5" class="movie-poster">

                <div class="movie-info">

                    <h3 class="movie-title">Housefull 5</h3>

                    <p class="movie-year">Latest • Comedy • TBA</p>

                    <div class="movie-rating">

                        <div class="stars">

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="far fa-star"></i>

                            <i class="far fa-star"></i>

                        </div>

                        <span>Coming Soon</span>

                    </div>

                    <div class="buttons">

                        <button class="btn btn-watch" onclick="openGoogle()">

                            <i class="fas fa-play"></i> Watch Now

                        </button>

                        <button class="btn btn-download" onclick="openGoogle()">

                            <i class="fas fa-download"></i> Download

                        </button>

                    </div>

                </div>

            </div>

            

            <!-- Movie 3 -->

            <div class="movie-card floating" style="animation-delay: 0.6s;">

                <img src="https://resizing.flixster.com/L5TTwxKBWj2LcZ84EpOUVsDfIcQ=/fit-in/352x330/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p24192312_k_v9_aa.jpg" alt="Shoebox" class="movie-poster">

                <div class="movie-info">

                    <h3 class="movie-title">Shoebox</h3>

                    <p class="movie-year">Latest • Drama • 1h 45m</p>

                    <div class="movie-rating">

                        <div class="stars">

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star-half-alt"></i>

                            <i class="far fa-star"></i>

                        </div>

                        <span>7.1/10</span>

                    </div>

                    <div class="buttons">

                        <button class="btn btn-watch" onclick="openGoogle()">

                            <i class="fas fa-play"></i> Watch Now

                        </button>

                        <button class="btn btn-download" onclick="openGoogle()">

                            <i class="fas fa-download"></i> Download

                        </button>

                    </div>

                </div>

            </div>

            

            <!-- More Bollywood Movies Card -->

            <div class="movie-card more-movies-card floating" style="animation-delay: 0.8s;" onclick="openMovieSite()">

                <div class="more-movies-icon">

                    <i class="fas fa-video"></i>

                </div>

                <h3 class="more-movies-text">More Bollywood Movies</h3>

                <p class="more-movies-subtext">Click to explore more</p>

            </div>

        </div>

        

        <footer>

            <p class="footer-text">© 2024-2025 Techpk Movies Hub. All Rights Reserved.</p>

        </footer>

    </div>

    

    <script>

        // NOTE: This function already opens the link in a new tab using '_blank'

        function openGoogle() {

            window.open('https://www.youtube.com/@techpk1249', '_blank');

        }

        

        // NOTE: This function also opens the link in a new tab

        function openMovieSite() {

            window.open('https://www.youtube.com/@techpk1249', '_blank'); // Replace with your desired website

        }

        

        // Create floating particles

        document.addEventListener('DOMContentLoaded', function() {

            const particlesContainer = document.getElementById('particles');

            

            for (let i = 0; i < 50; i++) {

                const particle = document.createElement('div');

                particle.classList.add('particle');

                particle.style.left = `${Math.random() * 100}%`;

                particle.style.top = `${Math.random() * 100}%`;

                particle.style.animationDelay = `${Math.random() * 15}s`;

                particle.style.opacity = Math.random();

                particlesContainer.appendChild(particle);

            }

            

            // Floating animation for movie cards

            const movieCards = document.querySelectorAll('.movie-card');

            movieCards.forEach((card, index) => {

                card.style.animationDelay = `${index * 0.1 + 0.1}s`;

                

                card.addEventListener('mouseenter', () => {

                    card.classList.add('floating');

                });

                

                card.addEventListener('mouseleave', () => {

                    card.classList.remove('floating');

                });

            });

        });

    </script>

</body>

</html>

Post a Comment

0 Comments