Ads Area

Why People Used Whatsapp Video Call Recorder

 


HTML Script

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>WhatsApp Video Call Recorder Pro - Download Now</title>

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

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

        }


        :root {

            --primary: #25D366;

            --secondary: #128C7E;

            --accent: #075E54;

            --light: #f5f5f5;

            --dark: #333;

            --gray: #777;

        }


        body {

            background: linear-gradient(135deg, #f5f5f5 0%, #e0f7e0 100%);

            color: var(--dark);

            line-height: 1.6;

        }


        .container {

            max-width: 1200px;

            margin: 0 auto;

            padding: 0 20px;

        }


        /* Header Styles */

        header {

            background: linear-gradient(to right, var(--accent), var(--secondary));

            color: white;

            padding: 15px 0;

            position: sticky;

            top: 0;

            z-index: 100;

            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

        }


        .header-content {

            display: flex;

            justify-content: space-between;

            align-items: center;

        }


        .logo {

            display: flex;

            align-items: center;

            gap: 10px;

        }


        .logo i {

            font-size: 28px;

        }


        .logo h1 {

            font-size: 22px;

            font-weight: 700;

        }


        nav ul {

            display: flex;

            list-style: none;

            gap: 25px;

        }


        nav a {

            color: white;

            text-decoration: none;

            font-weight: 500;

            transition: all 0.3s ease;

            padding: 5px 10px;

            border-radius: 4px;

        }


        nav a:hover {

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

        }


        /* Hero Section */

        .hero {

            padding: 80px 0;

            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%2325D366" opacity="0.1"/></svg>');

            text-align: center;

        }


        .hero-content {

            max-width: 800px;

            margin: 0 auto;

        }


        .hero h2 {

            font-size: 42px;

            margin-bottom: 20px;

            color: var(--accent);

            animation: fadeIn 1s ease;

        }


        .hero p {

            font-size: 18px;

            color: var(--gray);

            margin-bottom: 30px;

            animation: fadeIn 1.5s ease;

        }


        .app-image {

            max-width: 300px;

            margin: 30px auto;

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

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

            border-radius: 20px;

            overflow: hidden;

        }


        .app-image img {

            width: 100%;

            display: block;

        }


        .download-btn {

            display: inline-block;

            background: linear-gradient(to right, var(--primary), var(--secondary));

            color: white;

            padding: 15px 40px;

            font-size: 18px;

            font-weight: 600;

            text-decoration: none;

            border-radius: 50px;

            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);

            transition: all 0.3s ease;

            animation: pulse 2s infinite;

        }


        .download-btn:hover {

            transform: translateY(-3px);

            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);

        }


        /* Features Section */

        .features {

            padding: 80px 0;

            background: white;

        }


        .section-title {

            text-align: center;

            margin-bottom: 50px;

        }


        .section-title h2 {

            font-size: 36px;

            color: var(--accent);

            margin-bottom: 15px;

        }


        .section-title p {

            color: var(--gray);

            max-width: 600px;

            margin: 0 auto;

        }


        .features-grid {

            display: grid;

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

            gap: 30px;

        }


        .feature-card {

            background: var(--light);

            padding: 30px;

            border-radius: 10px;

            text-align: center;

            transition: all 0.3s ease;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

        }


        .feature-card:hover {

            transform: translateY(-10px);

            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);

        }


        .feature-icon {

            font-size: 40px;

            color: var(--primary);

            margin-bottom: 20px;

        }


        .feature-card h3 {

            margin-bottom: 15px;

            color: var(--accent);

        }


        /* Reviews Section */

        .reviews {

            padding: 80px 0;

            background: linear-gradient(135deg, #f0f9ff 0%, #e0f7e0 100%);

        }


        .reviews-slider {

            max-width: 1000px;

            margin: 0 auto;

            position: relative;

            overflow: hidden;

        }


        .review-track {

            display: flex;

            transition: transform 0.5s ease;

        }


        .review-card {

            min-width: 100%;

            padding: 30px;

            background: white;

            border-radius: 10px;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

            text-align: center;

        }


        .review-avatar {

            width: 70px;

            height: 70px;

            border-radius: 50%;

            margin: 0 auto 20px;

            overflow: hidden;

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

        }


        .review-avatar img {

            width: 100%;

            height: 100%;

            object-fit: cover;

        }


        .review-text {

            font-style: italic;

            margin-bottom: 20px;

            color: var(--gray);

        }


        .reviewer {

            font-weight: 600;

            color: var(--accent);

        }


        .stars {

            color: gold;

            margin-bottom: 15px;

        }


        .slider-nav {

            display: flex;

            justify-content: center;

            margin-top: 30px;

            gap: 10px;

        }


        .slider-dot {

            width: 12px;

            height: 12px;

            border-radius: 50%;

            background: var(--gray);

            cursor: pointer;

            transition: all 0.3s ease;

        }


        .slider-dot.active {

            background: var(--primary);

            transform: scale(1.2);

        }


        /* How It Works */

        .how-it-works {

            padding: 80px 0;

            background: white;

        }


        .steps {

            display: flex;

            justify-content: space-between;

            max-width: 900px;

            margin: 0 auto;

            position: relative;

        }


        .steps::before {

            content: '';

            position: absolute;

            top: 40px;

            left: 10%;

            right: 10%;

            height: 3px;

            background: var(--primary);

            z-index: 1;

        }


        .step {

            text-align: center;

            position: relative;

            z-index: 2;

            flex: 1;

        }


        .step-number {

            width: 80px;

            height: 80px;

            background: var(--primary);

            color: white;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 30px;

            font-weight: 700;

            margin: 0 auto 20px;

            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);

        }


        .step h3 {

            margin-bottom: 10px;

            color: var(--accent);

        }


        /* Footer */

        footer {

            background: var(--accent);

            color: white;

            padding: 50px 0 20px;

        }


        .footer-content {

            display: grid;

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

            gap: 40px;

            margin-bottom: 40px;

        }


        .footer-column h3 {

            margin-bottom: 20px;

            font-size: 20px;

            position: relative;

            padding-bottom: 10px;

        }


        .footer-column h3::after {

            content: '';

            position: absolute;

            bottom: 0;

            left: 0;

            width: 50px;

            height: 3px;

            background: var(--primary);

        }


        .footer-column ul {

            list-style: none;

        }


        .footer-column ul li {

            margin-bottom: 10px;

        }


        .footer-column a {

            color: #ddd;

            text-decoration: none;

            transition: all 0.3s ease;

        }


        .footer-column a:hover {

            color: var(--primary);

            padding-left: 5px;

        }


        .social-links {

            display: flex;

            gap: 15px;

            margin-top: 20px;

        }


        .social-links a {

            display: flex;

            align-items: center;

            justify-content: center;

            width: 40px;

            height: 40px;

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

            border-radius: 50%;

            transition: all 0.3s ease;

        }


        .social-links a:hover {

            background: var(--primary);

            transform: translateY(-3px);

        }


        .copyright {

            text-align: center;

            padding-top: 20px;

            border-top: 1px solid rgba(255, 255, 255, 0.1);

            font-size: 14px;

            color: #aaa;

        }


        /* Animations */

        @keyframes fadeIn {

            from { opacity: 0; transform: translateY(20px); }

            to { opacity: 1; transform: translateY(0); }

        }


        @keyframes float {

            0% { transform: translateY(0px); }

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

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

        }


        @keyframes pulse {

            0% { box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }

            50% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.7); }

            100% { box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }

        }


        /* Responsive Design */

        @media (max-width: 768px) {

            .header-content {

                flex-direction: column;

                gap: 15px;

            }


            nav ul {

                gap: 15px;

            }


            .hero h2 {

                font-size: 32px;

            }


            .steps {

                flex-direction: column;

                gap: 40px;

            }


            .steps::before {

                display: none;

            }

        }

    </style>

</head>

<body>

    <!-- Header -->

    <header>

        <div class="container header-content">

            <div class="logo">

                <i class="fab fa-whatsapp"></i>

                <h1>WhatsApp Recorder Pro</h1>

            </div>

            <nav>

                <ul>

                    <li><a href="#features">Features</a></li>

                    <li><a href="#reviews">Reviews</a></li>

                    <li><a href="#how-it-works">How It Works</a></li>

                    <li><a href="#download">Download</a></li>

                </ul>

            </nav>

        </div>

    </header>


    <!-- Hero Section -->

    <section class="hero">

        <div class="container hero-content">

            <h2>Record WhatsApp Video Calls in HD Quality</h2>

            <p>Never miss important moments during your video calls. Our advanced app lets you record WhatsApp video calls with crystal clear audio and video quality.</p>

            

            <div class="app-image">

                <!-- This would be your app screenshot -->

                <div style="width:100%; height:200px; background:linear-gradient(135deg, #25D366, #128C7E); display:flex; align-items:center; justify-content:center; color:white; font-size:24px;">

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

                </div>

            </div>

            

            <a href="techpk" class="download-btn" id="downloadBtn">

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

            </a>

        </div>

    </section>


    <!-- Features Section -->

    <section class="features" id="features">

        <div class="container">

            <div class="section-title">

                <h2>Powerful Features</h2>

                <p>Our app comes packed with everything you need to record your important video calls</p>

            </div>

            

            <div class="features-grid">

                <div class="feature-card">

                    <div class="feature-icon">

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

                    </div>

                    <h3>HD Recording</h3>

                    <p>Record video calls in high definition quality with crystal clear audio.</p>

                </div>

                

                <div class="feature-card">

                    <div class="feature-icon">

                        <i class="fas fa-user-shield"></i>

                    </div>

                    <h3>Privacy Protected</h3>

                    <p>Your recordings are stored securely on your device only.</p>

                </div>

                

                <div class="feature-card">

                    <div class="feature-icon">

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

                    </div>

                    <h3>One-Tap Recording</h3>

                    <p>Start recording with just one tap during any video call.</p>

                </div>

                

                <div class="feature-card">

                    <div class="feature-icon">

                        <i class="fas fa-cloud-download-alt"></i>

                    </div>

                    <h3>Auto Save</h3>

                    <p>Recordings are automatically saved to your gallery for easy access.</p>

                </div>

                

                <div class="feature-card">

                    <div class="feature-icon">

                        <i class="fas fa-mobile-alt"></i>

                    </div>

                    <h3>All Devices</h3>

                    <p>Works perfectly on all Android and iOS devices without rooting.</p>

                </div>

                

                <div class="feature-card">

                    <div class="feature-icon">

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

                    </div>

                    <h3>Auto Update</h3>

                    <p>Regular updates to ensure compatibility with latest WhatsApp versions.</p>

                </div>

            </div>

        </div>

    </section>


    <!-- Reviews Section -->

    <section class="reviews" id="reviews">

        <div class="container">

            <div class="section-title">

                <h2>User Reviews</h2>

                <p>See what our users are saying about WhatsApp Video Call Recorder Pro</p>

            </div>

            

            <div class="reviews-slider">

                <div class="review-track" id="reviewTrack">

                    <div class="review-card">

                        <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>

                        <div class="review-avatar">

                            <div style="width:100%; height:100%; background:#25D366; display:flex; align-items:center; justify-content:center; color:white; font-size:24px;">

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

                            </div>

                        </div>

                        <p class="review-text">"This app is amazing! I recorded my first video call with my family abroad and the quality was perfect. So easy to use!"</p>

                        <p class="reviewer">- Priya Sharma, Mumbai</p>

                    </div>

                    

                    <div class="review-card">

                        <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>

                        <div class="review-avatar">

                            <div style="width:100%; height:100%; background:#128C7E; display:flex; align-items:center; justify-content:center; color:white; font-size:24px;">

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

                            </div>

                        </div>

                        <p class="review-text">"I use this for recording my business meetings on WhatsApp. The audio is crystal clear and the video quality is excellent."</p>

                        <p class="reviewer">- Raj Patel, Delhi</p>

                    </div>

                    

                    <div class="review-card">

                        <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>

                        <div class="review-avatar">

                            <div style="width:100%; height:100%; background:#075E54; display:flex; align-items:center; justify-content:center; color:white; font-size:24px;">

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

                            </div>

                        </div>

                        <p class="review-text">"Best WhatsApp recorder app I've tried! Simple interface and works perfectly every time. Highly recommended!"</p>

                        <p class="reviewer">- Amit Kumar, Bangalore</p>

                    </div>

                </div>

                

                <div class="slider-nav">

                    <div class="slider-dot active" data-index="0"></div>

                    <div class="slider-dot" data-index="1"></div>

                    <div class="slider-dot" data-index="2"></div>

                </div>

            </div>

        </div>

    </section>


    <!-- How It Works Section -->

    <section class="how-it-works" id="how-it-works">

        <div class="container">

            <div class="section-title">

                <h2>How It Works</h2>

                <p>Get started in just 3 simple steps</p>

            </div>

            

            <div class="steps">

                <div class="step">

                    <div class="step-number">1</div>

                    <h3>Download & Install</h3>

                    <p>Download the app from our secure server and install it on your device.</p>

                </div>

                

                <div class="step">

                    <div class="step-number">2</div>

                    <h3>Start Video Call</h3>

                    <p>Open WhatsApp and start a video call with any contact.</p>

                </div>

                

                <div class="step">

                    <div class="step-number">3</div>

                    <h3>Tap to Record</h3>

                    <p>Tap the record button during the call to start recording in HD quality.</p>

                </div>

            </div>

        </div>

    </section>


    <!-- Final CTA Section -->

    <section class="hero" id="download" style="padding: 60px 0;">

        <div class="container hero-content">

            <h2>Ready to Record Your WhatsApp Calls?</h2>

            <p>Join thousands of satisfied users who record their important video calls with our app</p>

            <a href="techpk" class="download-btn" id="downloadBtn2">

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

            </a>

            <p style="margin-top: 15px; font-size: 14px; color: var(--gray);">Compatible with Android 5.0+ and iOS 10+</p>

        </div>

    </section>


    <!-- Footer -->

    <footer>

        <div class="container">

            <div class="footer-content">

                <div class="footer-column">

                    <h3>WhatsApp Recorder Pro</h3>

                    <p>The ultimate solution for recording your WhatsApp video calls with premium quality and ease of use.</p>

                    <div class="social-links">

                        <a href="techpk"><i class="fab fa-facebook-f"></i></a>

                        <a href="techpk"><i class="fab fa-twitter"></i></a>

                        <a href="techpk"><i class="fab fa-instagram"></i></a>

                        <a href="techpk"><i class="fab fa-youtube"></i></a>

                    </div>

                </div>

                

                <div class="footer-column">

                    <h3>Quick Links</h3>

                    <ul>

                        <li><a href="#features">Features</a></li>

                        <li><a href="#reviews">Reviews</a></li>

                        <li><a href="#how-it-works">How It Works</a></li>

                        <li><a href="#download">Download</a></li>

                    </ul>

                </div>

                

                <div class="footer-column">

                    <h3>Support</h3>

                    <ul>

                        <li><a href="techpk">FAQ</a></li>

                        <li><a href="techpk">Contact Us</a></li>

                        <li><a href="techpk">Privacy Policy</a></li>

                        <li><a href="techpk">Terms of Service</a></li>

                    </ul>

                </div>

                

                <div class="footer-column">

                    <h3>Contact Info</h3>

                    <ul>

                        <li><i class="fas fa-envelope"></i> support@whatsapprecorderpro.com</li>

                        <li><i class="fas fa-globe"></i> www.whatsapprecorderpro.com</li>

                    </ul>

                </div>

            </div>

            

            <div class="copyright">

                <p>&copy; 2023 WhatsApp Video Call Recorder Pro. All rights reserved. This app is not affiliated with WhatsApp Inc.</p>

            </div>

        </div>

    </footer>


    <script>

        // Review Slider

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

            const reviewTrack = document.getElementById('reviewTrack');

            const dots = document.querySelectorAll('.slider-dot');

            let currentIndex = 0;

            

            function showReview(index) {

                reviewTrack.style.transform = `translateX(-${index * 100}%)`;

                

                // Update active dot

                dots.forEach(dot => dot.classList.remove('active'));

                dots[index].classList.add('active');

                

                currentIndex = index;

            }

            

            // Add click events to dots

            dots.forEach(dot => {

                dot.addEventListener('click', function() {

                    const index = parseInt(this.getAttribute('data-index'));

                    showReview(index);

                });

            });

            

            // Auto slide

            setInterval(() => {

                currentIndex = (currentIndex + 1) % dots.length;

                showReview(currentIndex);

            }, 5000);

            

            // Download button tracking

            const downloadButtons = document.querySelectorAll('#downloadBtn, #downloadBtn2');

            downloadButtons.forEach(button => {

                button.addEventListener('click', function(e) {

                    // You can add tracking code here

                    console.log('Download button clicked - redirecting to Adsterra');

                    // The actual redirect happens via the href attribute

                });

            });

        });

    </script>

</body>

</html>

Top Post Ad

Below Post Ad

Ads Area