<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1849828785720967600</id><updated>2026-04-04T07:20:16.346+05:30</updated><category term="Video Games"/><category term="10th Board certification exam result year 2023"/><category term="Movies"/><category term="Sports"/><category term="2 line suvichar"/><category term="Apk"/><category term="Biceps vs triceps"/><category term="Brain"/><category term="Calories"/><category term="Chest Workout"/><category term="Cooking And recipes"/><category term="Digital marketing"/><category term="Ebook"/><category term="English to hindi translator"/><category term="Fubar 2023 webseries review"/><category term="Health"/><category term="How to become IAS?"/><category term="Instagram Hastag Generator"/><category term="Losing weight"/><category term="Love calculator"/><category term="Motivation story in hindi"/><category term="Online calculator"/><category term="P90x yoga"/><category term="Questions"/><category term="Social media"/><category term="Stock Market"/><category term="Tech"/><category term="Tic tac toe"/><category term="Website Speed Checker tool"/><category term="Word counter"/><category term="Youtube tag generator"/><category term="हिंदी ब्लॉग्स"/><title type='text'>Xking360</title><subtitle type='html'>Welcome to our blog. Here we share the knowledgeable content with you, related with all kind of filed like fitness, health, technology, wealth care, business and much more. </subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default?alt=atom'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default?alt=atom&amp;start-index=26&amp;max-results=25'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>59</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-4299151295735091104</id><published>2025-11-06T08:45:14.056+05:30</published><updated>2025-11-06T09:03:49.305+05:30</updated><title type='text'>flappy sourav joshi</title><content type='html'>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;Flappy Bird Clone&lt;/title&gt;
    &lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: &#39;Segoe UI&#39;, Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: linear-gradient(to bottom, #87CEEB, #1E90FF);
            overflow: hidden;
        }
        
        .game-container {
            position: relative;
            width: 360px;
            height: 640px;
            margin: 20px auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        #game-canvas {
            background-color: #70c5ce;
            display: block;
        }
        
        .screen {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            text-align: center;
            transition: opacity 0.5s;
            z-index: 20;
        }
        
        .screen h1 {
            font-size: 40px;
            margin-bottom: 20px;
            color: #f8c629;
            text-shadow: 2px 2px 0 #d35400;
        }
        
        .screen p {
            margin-bottom: 30px;
            font-size: 18px;
            max-width: 80%;
        }
        
        .btn {
            background-color: #f8c629;
            color: #d35400;
            border: none;
            padding: 12px 30px;
            font-size: 18px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 0 #d35400;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 0 #d35400;
        }
        
        .btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 0 #d35400;
        }
        
        .hidden {
            display: none;
        }
        
        .score-display {
            position: absolute;
            top: 20px;
            width: 100%;
            text-align: center;
            font-size: 40px;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 0 #000;
            z-index: 10;
        }
        
        .upload-container {
            margin: 20px 0;
            padding: 15px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            width: 80%;
        }
        
        .upload-label {
            display: block;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .instructions {
            margin-top: 30px;
            font-size: 14px;
            color: #ccc;
        }
        
        .game-title {
            position: absolute;
            top: 50px;
            width: 100%;
            text-align: center;
            font-size: 28px;
            color: white;
            text-shadow: 2px 2px 0 #000;
            z-index: 10;
        }
        
        .high-score {
            position: absolute;
            top: 90px;
            width: 100%;
            text-align: center;
            font-size: 18px;
            color: white;
            text-shadow: 2px 2px 0 #000;
            z-index: 10;
        }
        
        .image-preview {
            margin-top: 15px;
            max-width: 100px;
            max-height: 100px;
            border-radius: 10px;
            border: 2px solid #f8c629;
            display: none;
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div class=&quot;game-container&quot;&gt;
        &lt;div class=&quot;game-title&quot;&gt;Flappy Bird Clone&lt;/div&gt;
        &lt;div class=&quot;high-score&quot;&gt;High Score: &lt;span id=&quot;high-score&quot;&gt;0&lt;/span&gt;&lt;/div&gt;
        &lt;div class=&quot;score-display&quot;&gt;0&lt;/div&gt;
        
        &lt;canvas id=&quot;game-canvas&quot; width=&quot;360&quot; height=&quot;640&quot;&gt;&lt;/canvas&gt;
        
        &lt;div id=&quot;start-screen&quot; class=&quot;screen&quot;&gt;
            &lt;h1&gt;Flappy Bird&lt;/h1&gt;
            &lt;p&gt;Click, tap, or press SPACE to make the bird fly. Avoid the pipes!&lt;/p&gt;
            
            &lt;div class=&quot;upload-container&quot;&gt;
                &lt;label class=&quot;upload-label&quot;&gt;Upload your bird image:&lt;/label&gt;
                &lt;input type=&quot;file&quot; id=&quot;bird-image&quot; accept=&quot;image/*&quot;&gt;
                &lt;img id=&quot;image-preview&quot; class=&quot;image-preview&quot; alt=&quot;Bird Preview&quot;&gt;
            &lt;/div&gt;
            
            &lt;button id=&quot;start-btn&quot; class=&quot;btn&quot;&gt;Start Game&lt;/button&gt;
            
            &lt;div class=&quot;instructions&quot;&gt;
                &lt;p&gt;Press SPACE, CLICK, or TAP to jump&lt;/p&gt;
            &lt;/div&gt;
        &lt;/div&gt;
        
        &lt;div id=&quot;game-over-screen&quot; class=&quot;screen hidden&quot;&gt;
            &lt;h1&gt;Game Over&lt;/h1&gt;
            &lt;p&gt;Your score: &lt;span id=&quot;final-score&quot;&gt;0&lt;/span&gt;&lt;/p&gt;
            &lt;button id=&quot;restart-btn&quot; class=&quot;btn&quot;&gt;Play Again&lt;/button&gt;
        &lt;/div&gt;
    &lt;/div&gt;

    &lt;script&gt;
        // Game variables
        const canvas = document.getElementById(&#39;game-canvas&#39;);
        const ctx = canvas.getContext(&#39;2d&#39;);
        const startScreen = document.getElementById(&#39;start-screen&#39;);
        const gameOverScreen = document.getElementById(&#39;game-over-screen&#39;);
        const startBtn = document.getElementById(&#39;start-btn&#39;);
        const restartBtn = document.getElementById(&#39;restart-btn&#39;);
        const scoreDisplay = document.querySelector(&#39;.score-display&#39;);
        const finalScoreDisplay = document.getElementById(&#39;final-score&#39;);
        const highScoreDisplay = document.getElementById(&#39;high-score&#39;);
        const birdImageInput = document.getElementById(&#39;bird-image&#39;);
        const imagePreview = document.getElementById(&#39;image-preview&#39;);
        
        // Game state
        let game = {
            active: false,
            gravity: 0.5,
            speed: 3,
            score: 0,
            highScore: localStorage.getItem(&#39;flappyHighScore&#39;) || 0
        };
        
        // Bird properties - Increased size for better visibility
        let bird = {
            x: 50,
            y: canvas.height / 2,
            width: 60, // Increased from 40
            height: 45, // Increased from 30
            velocity: 0,
            jump: -10,
            rotation: 0
        };
        
        // Pipes array
        let pipes = [];
        
        // Bird image - using a default bird SVG
        let birdImg = new Image();
        birdImg.src = &#39;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjRjVDQzI5IiBkPSJNNDU2IDIwOGMwLTY2LjItNTMuOC0xMjAtMTIwLTEyMHMtMTIwIDUzLjgtMTIwIDEyMGMwIDY2LjIgNTMuOCAxMjAgMTIwIDEyMHMxMjAtNTMuOCAxMjAtMTIwWiIvPjxwYXRoIGZpbGw9IiNENTU0MDAiIGQ9Ik0zMzYgMjA4YzAtMzMuMS0yNi45LTYwLTYwLTYwcy02MCAyNi45LTYwIDYwYzAgMzMuMSAyNi45IDYwIDYwIDYwczYwLTI2LjkgNjAtNjBaIi8+PHBhdGggZmlsbD0iI0Y1Q0MyOSIgZD0iTTQxNiAyNTZjMCAxMy4zLTEwLjcgMjQtMjQgMjRIMTIwYy0xMy4zIDAtMjQtMTAuNy0yNC0yNHMxMC43LTI0IDI0LTI0aDI3MmMxMy4zIDAgMjQgMTAuNyAyNCAyNFoiLz48cGF0aCBmaWxsPSIjRjVDQzI5IiBkPSJNMzkyIDM1MmMwIDEzLjMtMTAuNyAyNC0yNCAyNEgxNDRjLTEzLjMgMC0yNC0xMC43LTI0LTI0czEwLjctMjQgMjQtMjRoMjI0YzEzLjMgMCAyNCAxMC43IDI0IDI0WiIvPjxwYXRoIGZpbGw9IiNENTU0MDAiIGQ9Ik0zNTIgMjU2YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNnM3LjItMTYgMTYtMTZoMTYwYzguOCAwIDE2IDcuMiAxNiAxNloiLz48L3N2Zz4=&#39;;
        
        // Set initial high score
        highScoreDisplay.textContent = game.highScore;
        
        // Handle uploaded bird image
        birdImageInput.addEventListener(&#39;change&#39;, function(e) {
            const file = e.target.files[0];
            if (file) {
                const reader = new FileReader();
                reader.onload = function(event) {
                    birdImg.src = event.target.result;
                    imagePreview.src = event.target.result;
                    imagePreview.style.display = &#39;block&#39;;
                };
                reader.readAsDataURL(file);
            }
        });
        
        // Draw bird with rotation
        function drawBird() {
            ctx.save();
            ctx.translate(bird.x + bird.width / 2, bird.y + bird.height / 2);
            ctx.rotate(bird.rotation * Math.PI / 180);
            ctx.drawImage(birdImg, -bird.width / 2, -bird.height / 2, bird.width, bird.height);
            ctx.restore();
        }
        
        // Pipe class
        class Pipe {
            constructor() {
                this.x = canvas.width;
                this.width = 60;
                this.gap = 180; // Increased gap to accommodate larger bird
                this.topHeight = Math.floor(Math.random() * (canvas.height - this.gap - 100)) + 50;
                this.bottomY = this.topHeight + this.gap;
                this.passed = false;
            }
            
            draw() {
                // Top pipe
                ctx.fillStyle = &#39;#73BF2E&#39;;
                ctx.fillRect(this.x, 0, this.width, this.topHeight);
                
                // Pipe cap
                ctx.fillStyle = &#39;#5A9E22&#39;;
                ctx.fillRect(this.x - 5, this.topHeight - 20, this.width + 10, 20);
                
                // Bottom pipe
                ctx.fillStyle = &#39;#73BF2E&#39;;
                ctx.fillRect(this.x, this.bottomY, this.width, canvas.height - this.bottomY);
                
                // Pipe cap
                ctx.fillStyle = &#39;#5A9E22&#39;;
                ctx.fillRect(this.x - 5, this.bottomY, this.width + 10, 20);
            }
            
            update() {
                this.x -= game.speed;
                
                // Check if bird passed the pipe
                if (!this.passed &amp;&amp; this.x + this.width &lt; bird.x) {
                    game.score++;
                    scoreDisplay.textContent = game.score;
                    this.passed = true;
                    
                    // Increase speed every 5 points
                    if (game.score % 5 === 0) {
                        game.speed += 0.5;
                    }
                }
                
                // Check collision - adjusted for larger bird
                if (
                    bird.x + bird.width - 10 &gt; this.x &amp;&amp; 
                    bird.x + 10 &lt; this.x + this.width &amp;&amp; 
                    (bird.y + 10 &lt; this.topHeight || bird.y + bird.height - 10 &gt; this.bottomY)
                ) {
                    endGame();
                }
                
                return this.x + this.width &lt; 0;
            }
        }
        
        // Draw background
        function drawBackground() {
            // Sky
            ctx.fillStyle = &#39;#70c5ce&#39;;
            ctx.fillRect(0, 0, canvas.width, canvas.height);
            
            // Clouds
            ctx.fillStyle = &#39;rgba(255, 255, 255, 0.8)&#39;;
            ctx.beginPath();
            ctx.arc(100, 100, 30, 0, Math.PI * 2);
            ctx.arc(130, 90, 35, 0, Math.PI * 2);
            ctx.arc(160, 100, 30, 0, Math.PI * 2);
            ctx.fill();
            
            ctx.beginPath();
            ctx.arc(300, 150, 25, 0, Math.PI * 2);
            ctx.arc(330, 140, 30, 0, Math.PI * 2);
            ctx.arc(360, 150, 25, 0, Math.PI * 2);
            ctx.fill();
            
            // Ground
            ctx.fillStyle = &#39;#DED895&#39;;
            ctx.fillRect(0, canvas.height - 50, canvas.width, 50);
            
            // Grass
            ctx.fillStyle = &#39;#73BF2E&#39;;
            ctx.fillRect(0, canvas.height - 50, canvas.width, 10);
        }
        
        // Game loop
        function gameLoop() {
            if (!game.active) return;
            
            // Clear canvas
            ctx.clearRect(0, 0, canvas.width, canvas.height);
            
            // Draw background
            drawBackground();
            
            // Update and draw pipes
            if (frames % 100 === 0) {
                pipes.push(new Pipe());
            }
            
            for (let i = pipes.length - 1; i &gt;= 0; i--) {
                pipes[i].draw();
                if (pipes[i].update()) {
                    pipes.splice(i, 1);
                }
            }
            
            // Update bird
            bird.velocity += game.gravity;
            bird.y += bird.velocity;
            
            // Rotate bird based on velocity
            bird.rotation = Math.min(bird.velocity * 3, 25);
            
            // Draw bird
            drawBird();
            
            // Check for collision with ground or ceiling - adjusted for larger bird
            if (bird.y + bird.height &gt;= canvas.height - 50 || bird.y &lt;= 0) {
                endGame();
            }
            
            frames++;
            requestAnimationFrame(gameLoop);
        }
        
        // Start game
        function startGame() {
            game.active = true;
            game.score = 0;
            game.speed = 3;
            scoreDisplay.textContent = &#39;0&#39;;
            bird.y = canvas.height / 2;
            bird.velocity = 0;
            bird.rotation = 0;
            pipes = [];
            startScreen.classList.add(&#39;hidden&#39;);
            gameOverScreen.classList.add(&#39;hidden&#39;);
            frames = 0;
            gameLoop();
        }
        
        // End game
        function endGame() {
            game.active = false;
            finalScoreDisplay.textContent = game.score;
            
            // Update high score
            if (game.score &gt; game.highScore) {
                game.highScore = game.score;
                highScoreDisplay.textContent = game.highScore;
                localStorage.setItem(&#39;flappyHighScore&#39;, game.highScore);
            }
            
            gameOverScreen.classList.remove(&#39;hidden&#39;);
        }
        
        // Jump function
        function jump() {
            if (!game.active) return;
            bird.velocity = bird.jump;
        }
        
        // Event listeners
        startBtn.addEventListener(&#39;click&#39;, startGame);
        restartBtn.addEventListener(&#39;click&#39;, startGame);
        
        canvas.addEventListener(&#39;click&#39;, jump);
        document.addEventListener(&#39;keydown&#39;, function(e) {
            if (e.code === &#39;Space&#39;) {
                if (!game.active &amp;&amp; !startScreen.classList.contains(&#39;hidden&#39;)) {
                    startGame();
                } else {
                    jump();
                }
                e.preventDefault();
            }
        });
        
        // Touch support for mobile
        document.addEventListener(&#39;touchstart&#39;, function(e) {
            if (!game.active &amp;&amp; !startScreen.classList.contains(&#39;hidden&#39;)) {
                startGame();
            } else {
                jump();
            }
            e.preventDefault();
        });
        
        // Initialize
        let frames = 0;
        birdImg.onload = function() {
            // Image is ready
        };
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/4299151295735091104/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2025/11/flappy-sourav-joshi.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/4299151295735091104'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/4299151295735091104'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2025/11/flappy-sourav-joshi.html' title='flappy sourav joshi'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-6152797063360945780</id><published>2025-08-06T18:06:00.004+05:30</published><updated>2025-08-06T18:32:27.197+05:30</updated><title type='text'>INSTAGRAM REELS DOWNLOADER WITHOUT LOGIN</title><content type='html'>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;InstaReel Downloader&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css&quot;&gt;
    &lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: &#39;Segoe UI&#39;, Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
            min-height: 100vh;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .container {
            width: 100%;
            max-width: 1000px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        
        header {
            background: linear-gradient(90deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .logo {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .logo i {
            font-size: 2.8rem;
            color: white;
        }
        
        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-top: 10px;
            font-weight: 300;
        }
        
        .content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px;
        }
        
        .left-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .right-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
        }
        
        .card-title {
            color: #833ab4;
            font-size: 1.4rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card-title i {
            font-size: 1.6rem;
        }
        
        .input-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        
        .url-input {
            display: flex;
            gap: 10px;
        }
        
        input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        input:focus {
            outline: none;
            border-color: #833ab4;
            box-shadow: 0 0 0 4px rgba(131, 58, 180, 0.15);
        }
        
        button {
            background: linear-gradient(90deg, #405DE6, #833AB4);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 0 28px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(131, 58, 180, 0.4);
        }
        
        .preview-container {
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 0;
            padding-bottom: 177.77%; /* 16:9 Aspect Ratio */
        }
        
        .preview-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .download-btn {
            width: 100%;
            padding: 18px;
            font-size: 1.2rem;
            margin-top: 20px;
            background: linear-gradient(90deg, #FD1D1D, #E1306C);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .feature {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-5px);
        }
        
        .feature i {
            font-size: 2.5rem;
            color: #833ab4;
            margin-bottom: 15px;
        }
        
        .feature h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .feature p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        footer {
            background: #f1f3f5;
            padding: 25px;
            text-align: center;
            color: #666;
            font-size: 0.95rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #833ab4;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: #fd1d1d;
            text-decoration: underline;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .content {
                flex-direction: column;
            }
            
            .left-section, .right-section {
                width: 100%;
            }
            
            .url-input {
                flex-direction: column;
            }
            
            button {
                padding: 15px;
                width: 100%;
                margin-top: 10px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            header {
                padding: 20px;
            }
            
            .logo i {
                font-size: 2.2rem;
            }
            
            h1 {
                font-size: 1.7rem;
            }
            
            .content {
                padding: 15px;
            }
            
            .card {
                padding: 20px;
            }
            
            .card-title {
                font-size: 1.2rem;
            }
            
            .download-btn {
                font-size: 1.1rem;
            }
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div class=&quot;container&quot;&gt;
        &lt;header&gt;
            &lt;div class=&quot;logo&quot;&gt;
                &lt;i class=&quot;fab fa-instagram&quot;&gt;&lt;/i&gt;
                &lt;h1&gt;InstaReel Downloader&lt;/h1&gt;
            &lt;/div&gt;
            &lt;p class=&quot;subtitle&quot;&gt;Download Instagram Reels without login - Fast &amp; Free&lt;/p&gt;
        &lt;/header&gt;
        
        &lt;div class=&quot;content&quot;&gt;
            &lt;div class=&quot;left-section&quot;&gt;
                &lt;div class=&quot;card&quot;&gt;
                    &lt;h2 class=&quot;card-title&quot;&gt;&lt;i class=&quot;fas fa-download&quot;&gt;&lt;/i&gt; Download Reels in 3 Steps&lt;/h2&gt;
                    
                    &lt;div class=&quot;input-group&quot;&gt;
                        &lt;label for=&quot;reel-url&quot;&gt;1. Paste Instagram Reel URL:&lt;/label&gt;
                        &lt;div class=&quot;url-input&quot;&gt;
                            &lt;input type=&quot;url&quot; id=&quot;reel-url&quot; placeholder=&quot;https://www.instagram.com/reel/...&quot; value=&quot;https://www.instagram.com/reel/CrYKenNve5Z/&quot;&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                    
                    &lt;button id=&quot;fetch-btn&quot;&gt;
                        &lt;i class=&quot;fas fa-cloud-download-alt&quot;&gt;&lt;/i&gt; Fetch Reel
                    &lt;/button&gt;
                    
                    &lt;div class=&quot;preview-section&quot; style=&quot;display: none;&quot; id=&quot;preview-section&quot;&gt;
                        &lt;div class=&quot;input-group&quot; style=&quot;margin-top: 25px;&quot;&gt;
                            &lt;label&gt;2. Preview Your Reel:&lt;/label&gt;
                            &lt;div class=&quot;preview-container&quot;&gt;
                                &lt;video id=&quot;reel-preview&quot; controls&gt;
                                    &lt;source src=&quot;&quot; type=&quot;video/mp4&quot;&gt;
                                &lt;/video&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                        
                        &lt;button class=&quot;download-btn&quot; id=&quot;download-btn&quot;&gt;
                            &lt;i class=&quot;fas fa-download&quot;&gt;&lt;/i&gt; Download Reel
                        &lt;/button&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                
                &lt;div class=&quot;features&quot;&gt;
                    &lt;div class=&quot;feature&quot;&gt;
                        &lt;i class=&quot;fas fa-bolt&quot;&gt;&lt;/i&gt;
                        &lt;h3&gt;Lightning Fast&lt;/h3&gt;
                        &lt;p&gt;Download reels in seconds with our optimized service&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;feature&quot;&gt;
                        &lt;i class=&quot;fas fa-shield-alt&quot;&gt;&lt;/i&gt;
                        &lt;h3&gt;100% Safe&lt;/h3&gt;
                        &lt;p&gt;No login required. Your privacy is protected&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;feature&quot;&gt;
                        &lt;i class=&quot;fas fa-highlighter&quot;&gt;&lt;/i&gt;
                        &lt;h3&gt;High Quality&lt;/h3&gt;
                        &lt;p&gt;Download reels in full HD quality&lt;/p&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            
            &lt;div class=&quot;right-section&quot;&gt;
                &lt;div class=&quot;card&quot;&gt;
                    &lt;h2 class=&quot;card-title&quot;&gt;&lt;i class=&quot;fas fa-question-circle&quot;&gt;&lt;/i&gt; How to Download&lt;/h2&gt;
                    &lt;ol style=&quot;padding-left: 20px; line-height: 2.2;&quot;&gt;
                        &lt;li&gt;Open Instagram app and find the reel you want to download&lt;/li&gt;
                        &lt;li&gt;Tap the &lt;strong&gt;three dots&lt;/strong&gt; (...) on the reel&lt;/li&gt;
                        &lt;li&gt;Select &lt;strong&gt;&quot;Copy Link&quot;&lt;/strong&gt; from the menu&lt;/li&gt;
                        &lt;li&gt;Paste the link in the input field on this page&lt;/li&gt;
                        &lt;li&gt;Click &lt;strong&gt;&quot;Fetch Reel&quot;&lt;/strong&gt; and then &lt;strong&gt;&quot;Download Reel&quot;&lt;/strong&gt;&lt;/li&gt;
                    &lt;/ol&gt;
                &lt;/div&gt;
                
                &lt;div class=&quot;card&quot;&gt;
                    &lt;h2 class=&quot;card-title&quot;&gt;&lt;i class=&quot;fas fa-star&quot;&gt;&lt;/i&gt; Why Choose Us&lt;/h2&gt;
                    &lt;ul style=&quot;padding-left: 20px; line-height: 2.2;&quot;&gt;
                        &lt;li&gt;&lt;strong&gt;No registration&lt;/strong&gt; required - download instantly&lt;/li&gt;
                        &lt;li&gt;Works on &lt;strong&gt;mobile, tablet, and desktop&lt;/strong&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;strong&gt;Completely free&lt;/strong&gt; with no hidden fees&lt;/li&gt;
                        &lt;li&gt;&lt;strong&gt;Unlimited downloads&lt;/strong&gt; without restrictions&lt;/li&gt;
                        &lt;li&gt;&lt;strong&gt;Regular updates&lt;/strong&gt; to ensure service works&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
        
        &lt;footer&gt;
            &lt;p&gt;Disclaimer: This tool is for personal use only. Please respect content creators and copyright laws.&lt;/p&gt;
            &lt;p&gt;© 2023 InstaReel Downloader | All rights reserved&lt;/p&gt;
            &lt;div class=&quot;footer-links&quot;&gt;
                &lt;a href=&quot;#&quot;&gt;Privacy Policy&lt;/a&gt;
                &lt;a href=&quot;#&quot;&gt;Terms of Service&lt;/a&gt;
                &lt;a href=&quot;#&quot;&gt;Contact Us&lt;/a&gt;
                &lt;a href=&quot;#&quot;&gt;Report Issue&lt;/a&gt;
            &lt;/div&gt;
        &lt;/footer&gt;
    &lt;/div&gt;
    
    &lt;script&gt;
        document.addEventListener(&#39;DOMContentLoaded&#39;, function() {
            const reelUrlInput = document.getElementById(&#39;reel-url&#39;);
            const fetchBtn = document.getElementById(&#39;fetch-btn&#39;);
            const previewSection = document.getElementById(&#39;preview-section&#39;);
            const downloadBtn = document.getElementById(&#39;download-btn&#39;);
            const reelPreview = document.getElementById(&#39;reel-preview&#39;);
            
            // Simulate fetching the reel
            fetchBtn.addEventListener(&#39;click&#39;, function() {
                const url = reelUrlInput.value.trim();
                
                if (!url) {
                    showAlert(&#39;Please enter a valid Instagram Reel URL&#39;, &#39;error&#39;);
                    return;
                }
                
                if (!isValidInstagramUrl(url)) {
                    showAlert(&#39;Please enter a valid Instagram Reel URL starting with https://www.instagram.com/reel/&#39;, &#39;error&#39;);
                    return;
                }
                
                // Show loading state
                fetchBtn.innerHTML = &#39;&lt;i class=&quot;fas fa-spinner fa-spin&quot;&gt;&lt;/i&gt; Fetching...&#39;;
                fetchBtn.disabled = true;
                
                // Simulate API call delay
                setTimeout(() =&gt; {
                    // Show preview section
                    previewSection.style.display = &#39;block&#39;;
                    
                    // Reset button
                    fetchBtn.innerHTML = &#39;&lt;i class=&quot;fas fa-cloud-download-alt&quot;&gt;&lt;/i&gt; Fetch Reel&#39;;
                    fetchBtn.disabled = false;
                    
                    // Scroll to preview
                    previewSection.scrollIntoView({ behavior: &#39;smooth&#39;, block: &#39;center&#39; });
                    
                    // Set a sample video for preview
                    reelPreview.querySelector(&#39;source&#39;).src = &#39;https://assets.mixkit.co/videos/preview/mixkit-girl-in-neon-sign-1232-large.mp4&#39;;
                    reelPreview.load();
                    
                    showAlert(&#39;Reel fetched successfully! Click Download to save it.&#39;, &#39;success&#39;);
                }, 2000);
            });
            
            // Download functionality
            downloadBtn.addEventListener(&#39;click&#39;, function() {
                const url = reelUrlInput.value.trim();
                
                if (!url || !isValidInstagramUrl(url)) {
                    showAlert(&#39;Please enter a valid Instagram Reel URL first&#39;, &#39;error&#39;);
                    return;
                }
                
                // Show loading state
                downloadBtn.innerHTML = &#39;&lt;i class=&quot;fas fa-spinner fa-spin&quot;&gt;&lt;/i&gt; Downloading...&#39;;
                downloadBtn.disabled = true;
                
                // Simulate download process
                setTimeout(() =&gt; {
                    // Create a temporary download link
                    const a = document.createElement(&#39;a&#39;);
                    a.href = &#39;https://assets.mixkit.co/videos/download/mixkit-girl-in-neon-sign-1232.mp4&#39;;
                    a.download = &#39;instagram-reel.mp4&#39;;
                    document.body.appendChild(a);
                    a.click();
                    document.body.removeChild(a);
                    
                    // Show success message
                    downloadBtn.innerHTML = &#39;&lt;i class=&quot;fas fa-check&quot;&gt;&lt;/i&gt; Downloaded!&#39;;
                    showAlert(&#39;Your reel has been downloaded successfully!&#39;, &#39;success&#39;);
                    
                    // Reset button after delay
                    setTimeout(() =&gt; {
                        downloadBtn.innerHTML = &#39;&lt;i class=&quot;fas fa-download&quot;&gt;&lt;/i&gt; Download Reel&#39;;
                        downloadBtn.disabled = false;
                    }, 3000);
                }, 1500);
            });
            
            // Validate Instagram URL format
            function isValidInstagramUrl(url) {
                const instaReelRegex = /^https?:\/\/(www\.)?instagram\.com\/reel\/[a-zA-Z0-9_-]+\/?/;
                return instaReelRegex.test(url);
            }
            
            // Show alert message
            function showAlert(message, type) {
                // Remove any existing alerts
                const existingAlert = document.querySelector(&#39;.alert&#39;);
                if (existingAlert) existingAlert.remove();
                
                const alertEl = document.createElement(&#39;div&#39;);
                alertEl.className = `alert alert-${type}`;
                alertEl.textContent = message;
                alertEl.style.cssText = `
                    position: fixed;
                    top: 20px;
                    left: 50%;
                    transform: translateX(-50%);
                    padding: 15px 30px;
                    border-radius: 50px;
                    font-weight: 600;
                    z-index: 1000;
                    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
                    animation: fadeIn 0.3s, fadeOut 0.3s 2.7s;
                `;
                
                if (type === &#39;error&#39;) {
                    alertEl.style.background = &#39;#ff4757&#39;;
                    alertEl.style.color = &#39;white&#39;;
                } else {
                    alertEl.style.background = &#39;#2ed573&#39;;
                    alertEl.style.color = &#39;white&#39;;
                }
                
                document.body.appendChild(alertEl);
                
                // Remove after animation
                setTimeout(() =&gt; {
                    alertEl.remove();
                }, 3000);
            }
        });
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/6152797063360945780/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2025/08/instagram-reels-downloader-without-login.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/6152797063360945780'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/6152797063360945780'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2025/08/instagram-reels-downloader-without-login.html' title='INSTAGRAM REELS DOWNLOADER WITHOUT LOGIN'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-8986750767752604060</id><published>2025-07-29T19:49:00.002+05:30</published><updated>2025-07-29T19:49:54.163+05:30</updated><title type='text'>website design</title><content type='html'>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;Clean Energy Investments | Solar Solutions&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css&quot;&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;family=Open+Sans:wght@300;400;600&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;style&gt;
        :root {
            --coral: #FF6B6B;
            --coral-dark: #e55c5c;
            --light-blue: #66CCCC;
            --dark-blue: #003366;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #495057;
            --white: #ffffff;
            --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: &#39;Open Sans&#39;, sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: &#39;Poppins&#39;, sans-serif;
            font-weight: 600;
            color: var(--dark-blue);
            line-height: 1.3;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-family: &#39;Poppins&#39;, sans-serif;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--coral);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .btn-primary:hover {
            background: var(--coral-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--dark-blue);
            border: 2px solid var(--dark-blue);
        }

        .btn-secondary:hover {
            background: var(--dark-blue);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--box-shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--coral), #FF9E6B);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.25);
        }

        .logo-icon i {
            color: var(--white);
            font-size: 24px;
        }

        .logo-text {
            font-family: &#39;Poppins&#39;, sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: var(--dark-blue);
        }

        .logo-text span {
            color: var(--coral);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 500;
            font-family: &#39;Poppins&#39;, sans-serif;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--coral);
        }

        nav ul li a:after {
            content: &#39;&#39;;
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--coral);
            transition: var(--transition);
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .nav-cta .btn {
            padding: 10px 20px;
            font-size: 14px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark-blue);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url(&#39;https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&amp;auto=format&amp;fit=crop&amp;w=1920&amp;q=80&#39;);
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0 80px;
            color: var(--white);
        }

        .hero-content {
            max-width: 650px;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
        }

        /* Stats Section */
        .stats {
            background-color: var(--white);
            padding: 70px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 107, 107, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .stat-icon i {
            font-size: 28px;
            color: var(--coral);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 5px;
        }

        .stat-text {
            font-size: 1.1rem;
            color: var(--dark-gray);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--light-gray);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--dark-gray);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .service-content p {
            margin-bottom: 20px;
            color: var(--dark-gray);
        }

        /* Investment CTA */
        .investment-cta {
            background: linear-gradient(135deg, var(--coral), #FF9E6B);
            padding: 100px 0;
            text-align: center;
            color: var(--white);
        }

        .investment-cta h2 {
            color: var(--white);
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .investment-cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .cta-btn {
            background: var(--dark-blue);
            color: var(--white);
            font-size: 1.1rem;
            padding: 15px 40px;
        }

        .cta-btn:hover {
            background: #002244;
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: var(--white);
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4:after {
            content: &#39;&#39;;
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--coral);
        }

        .footer-col p {
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--coral);
            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;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--coral);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 280px;
                height: calc(100vh - 80px);
                background: var(--white);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                padding: 30px;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 20px 0;
            }
            
            .hero-btns {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .investment-cta h2 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .investment-cta h2 {
                font-size: 1.9rem;
            }
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;!-- Header --&gt;
    &lt;header&gt;
        &lt;div class=&quot;container header-container&quot;&gt;
            &lt;div class=&quot;logo&quot;&gt;
                &lt;div class=&quot;logo-icon&quot;&gt;
                    &lt;i class=&quot;fas fa-sun&quot;&gt;&lt;/i&gt;
                &lt;/div&gt;
                &lt;div class=&quot;logo-text&quot;&gt;Clean&lt;span&gt;Energy&lt;/span&gt;&lt;/div&gt;
            &lt;/div&gt;
            &lt;button class=&quot;mobile-menu-btn&quot;&gt;
                &lt;i class=&quot;fas fa-bars&quot;&gt;&lt;/i&gt;
            &lt;/button&gt;
            &lt;nav&gt;
                &lt;ul&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;About Us&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Services&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Invest&lt;/a&gt;&lt;/li&gt;
                    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;
                    &lt;li class=&quot;nav-cta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;btn btn-primary&quot;&gt;Get a Quote&lt;/a&gt;&lt;/li&gt;
                &lt;/ul&gt;
            &lt;/nav&gt;
        &lt;/div&gt;
    &lt;/header&gt;

    &lt;!-- Hero Section --&gt;
    &lt;section class=&quot;hero&quot;&gt;
        &lt;div class=&quot;container&quot;&gt;
            &lt;div class=&quot;hero-content&quot;&gt;
                &lt;h1&gt;Powering the Future with Clean, Renewable Energy&lt;/h1&gt;
                &lt;p&gt;We provide innovative solar solutions for homes and businesses, helping you save money while creating a sustainable future for our planet.&lt;/p&gt;
                &lt;div class=&quot;hero-btns&quot;&gt;
                    &lt;a href=&quot;#&quot; class=&quot;btn btn-primary&quot;&gt;Our Services&lt;/a&gt;
                    &lt;a href=&quot;#&quot; class=&quot;btn btn-secondary&quot;&gt;Invest With Us&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/section&gt;

    &lt;!-- Stats Section --&gt;
    &lt;section class=&quot;stats&quot;&gt;
        &lt;div class=&quot;container stats-container&quot;&gt;
            &lt;div class=&quot;stat-card&quot;&gt;
                &lt;div class=&quot;stat-icon&quot;&gt;
                    &lt;i class=&quot;fas fa-solar-panel&quot;&gt;&lt;/i&gt;
                &lt;/div&gt;
                &lt;div class=&quot;stat-number&quot;&gt;850+&lt;/div&gt;
                &lt;div class=&quot;stat-text&quot;&gt;Projects Completed&lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;stat-card&quot;&gt;
                &lt;div class=&quot;stat-icon&quot;&gt;
                    &lt;i class=&quot;fas fa-bolt&quot;&gt;&lt;/i&gt;
                &lt;/div&gt;
                &lt;div class=&quot;stat-number&quot;&gt;24MW&lt;/div&gt;
                &lt;div class=&quot;stat-text&quot;&gt;Solar Capacity Installed&lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;stat-card&quot;&gt;
                &lt;div class=&quot;stat-icon&quot;&gt;
                    &lt;i class=&quot;fas fa-tree&quot;&gt;&lt;/i&gt;
                &lt;/div&gt;
                &lt;div class=&quot;stat-number&quot;&gt;15,000+&lt;/div&gt;
                &lt;div class=&quot;stat-text&quot;&gt;Tons of CO2 Reduced&lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;stat-card&quot;&gt;
                &lt;div class=&quot;stat-icon&quot;&gt;
                    &lt;i class=&quot;fas fa-smile&quot;&gt;&lt;/i&gt;
                &lt;/div&gt;
                &lt;div class=&quot;stat-number&quot;&gt;98%&lt;/div&gt;
                &lt;div class=&quot;stat-text&quot;&gt;Customer Satisfaction&lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/section&gt;

    &lt;!-- Services Section --&gt;
    &lt;section class=&quot;services&quot;&gt;
        &lt;div class=&quot;container&quot;&gt;
            &lt;div class=&quot;section-header&quot;&gt;
                &lt;h2&gt;Our Solar Solutions&lt;/h2&gt;
                &lt;p&gt;We provide comprehensive solar energy services tailored to both residential and commercial needs.&lt;/p&gt;
            &lt;/div&gt;
            &lt;div class=&quot;services-grid&quot;&gt;
                &lt;div class=&quot;service-card&quot;&gt;
                    &lt;div class=&quot;service-img&quot; style=&quot;background-image: url(&#39;https://images.unsplash.com/photo-1613665813446-82a78c468a1d?ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&amp;auto=format&amp;fit=crop&amp;w=800&amp;q=80&#39;);&quot;&gt;&lt;/div&gt;
                    &lt;div class=&quot;service-content&quot;&gt;
                        &lt;h3&gt;Solar Panel Installation&lt;/h3&gt;
                        &lt;p&gt;Professional installation of high-efficiency solar panels for maximum energy production and long-term savings.&lt;/p&gt;
                        &lt;a href=&quot;#&quot; class=&quot;btn btn-secondary&quot;&gt;Learn More&lt;/a&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                &lt;div class=&quot;service-card&quot;&gt;
                    &lt;div class=&quot;service-img&quot; style=&quot;background-image: url(&#39;https://images.unsplash.com/photo-1582407947304-fd86f028f716?ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&amp;auto=format&amp;fit=crop&amp;w=800&amp;q=80&#39;);&quot;&gt;&lt;/div&gt;
                    &lt;div class=&quot;service-content&quot;&gt;
                        &lt;h3&gt;Energy Audits&lt;/h3&gt;
                        &lt;p&gt;Comprehensive energy assessments to identify efficiency improvements and optimize your energy usage.&lt;/p&gt;
                        &lt;a href=&quot;#&quot; class=&quot;btn btn-secondary&quot;&gt;Learn More&lt;/a&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                &lt;div class=&quot;service-card&quot;&gt;
                    &lt;div class=&quot;service-img&quot; style=&quot;background-image: url(&#39;https://images.unsplash.com/photo-1564053489984-317bbd824340?ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&amp;auto=format&amp;fit=crop&amp;w=800&amp;q=80&#39;);&quot;&gt;&lt;/div&gt;
                    &lt;div class=&quot;service-content&quot;&gt;
                        &lt;h3&gt;Commercial Solutions&lt;/h3&gt;
                        &lt;p&gt;Custom solar solutions for businesses to reduce operational costs and enhance sustainability credentials.&lt;/p&gt;
                        &lt;a href=&quot;#&quot; class=&quot;btn btn-secondary&quot;&gt;Learn More&lt;/a&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/section&gt;

    &lt;!-- Investment CTA --&gt;
    &lt;section class=&quot;investment-cta&quot;&gt;
        &lt;div class=&quot;container&quot;&gt;
            &lt;h2&gt;Invest in a Sustainable Future&lt;/h2&gt;
            &lt;p&gt;Join us in accelerating the transition to renewable energy. Our investment opportunities offer competitive returns while making a positive environmental impact.&lt;/p&gt;
            &lt;a href=&quot;#&quot; class=&quot;btn cta-btn&quot;&gt;Explore Investment Options&lt;/a&gt;
        &lt;/div&gt;
    &lt;/section&gt;

    &lt;!-- Footer --&gt;
    &lt;footer&gt;
        &lt;div class=&quot;container&quot;&gt;
            &lt;div class=&quot;footer-grid&quot;&gt;
                &lt;div class=&quot;footer-col&quot;&gt;
                    &lt;div class=&quot;logo&quot;&gt;
                        &lt;div class=&quot;logo-icon&quot;&gt;
                            &lt;i class=&quot;fas fa-sun&quot;&gt;&lt;/i&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;logo-text&quot;&gt;Clean&lt;span&gt;Energy&lt;/span&gt;&lt;/div&gt;
                    &lt;/div&gt;
                    &lt;p&gt;Driving the future of clean, renewable power solutions through innovative solar technology and sustainable investment.&lt;/p&gt;
                    &lt;div class=&quot;social-links&quot;&gt;
                        &lt;a href=&quot;#&quot;&gt;&lt;i class=&quot;fab fa-facebook-f&quot;&gt;&lt;/i&gt;&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;&lt;i class=&quot;fab fa-twitter&quot;&gt;&lt;/i&gt;&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;&lt;i class=&quot;fab fa-linkedin-in&quot;&gt;&lt;/i&gt;&lt;/a&gt;
                        &lt;a href=&quot;#&quot;&gt;&lt;i class=&quot;fab fa-instagram&quot;&gt;&lt;/i&gt;&lt;/a&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                &lt;div class=&quot;footer-col&quot;&gt;
                    &lt;h4&gt;Quick Links&lt;/h4&gt;
                    &lt;ul class=&quot;footer-links&quot;&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;About Us&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Services&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Projects&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Investment&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/div&gt;
                &lt;div class=&quot;footer-col&quot;&gt;
                    &lt;h4&gt;Our Services&lt;/h4&gt;
                    &lt;ul class=&quot;footer-links&quot;&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Residential Solar&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Commercial Solar&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Energy Audits&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Maintenance&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Solar Financing&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Consultation&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/div&gt;
                &lt;div class=&quot;footer-col&quot;&gt;
                    &lt;h4&gt;Contact Us&lt;/h4&gt;
                    &lt;p&gt;&lt;i class=&quot;fas fa-map-marker-alt&quot;&gt;&lt;/i&gt; 123 Solar Avenue, San Francisco, CA&lt;/p&gt;
                    &lt;p&gt;&lt;i class=&quot;fas fa-phone&quot;&gt;&lt;/i&gt; (555) 123-4567&lt;/p&gt;
                    &lt;p&gt;&lt;i class=&quot;fas fa-envelope&quot;&gt;&lt;/i&gt; info@cleanenergyinvest.com&lt;/p&gt;
                    &lt;p&gt;&lt;i class=&quot;fas fa-clock&quot;&gt;&lt;/i&gt; Mon-Fri: 9AM - 6PM&lt;/p&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;copyright&quot;&gt;
                &lt;p&gt;&amp;copy; 2023 Clean Energy Investments. All rights reserved.&lt;/p&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/footer&gt;

    &lt;script&gt;
        // Mobile Menu Toggle
        const mobileMenuBtn = document.querySelector(&#39;.mobile-menu-btn&#39;);
        const nav = document.querySelector(&#39;nav&#39;);
        
        mobileMenuBtn.addEventListener(&#39;click&#39;, () =&gt; {
            nav.classList.toggle(&#39;active&#39;);
        });
        
        // Smooth scrolling for anchor links
        document.querySelectorAll(&#39;a[href^=&quot;#&quot;]&#39;).forEach(anchor =&gt; {
            anchor.addEventListener(&#39;click&#39;, function(e) {
                e.preventDefault();
                
                document.querySelector(this.getAttribute(&#39;href&#39;)).scrollIntoView({
                    behavior: &#39;smooth&#39;
                });
            });
        });
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/8986750767752604060/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2025/07/clean-energy-investments-solar.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/8986750767752604060'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/8986750767752604060'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2025/07/clean-energy-investments-solar.html' title='website design'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-6293078797389059572</id><published>2025-06-21T08:22:00.003+05:30</published><updated>2025-06-21T08:24:10.179+05:30</updated><title type='text'>virtual world tour</title><content type='html'>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
  &lt;meta charset=&quot;UTF-8&quot; /&gt;
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;/&gt;
  &lt;title&gt;Virtual World Tour&lt;/title&gt;
  &lt;style&gt;
    body {
      font-family: Arial, sans-serif;
      text-align: center;
      margin: 0;
      background: #f0f0f0;
    }
    #app {
      padding: 20px;
    }
    button {
      padding: 15px 30px;
      font-size: 18px;
      cursor: pointer;
      background-color: #28a745;
      color: white;
      border: none;
      border-radius: 10px;
      margin-top: 20px;
    }
    select {
      padding: 10px;
      font-size: 16px;
      margin: 10px;
    }
    iframe {
      width: 100%;
      height: 80vh;
      border: none;
      margin-top: 20px;
    }
  &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;div id=&quot;app&quot;&gt;
    &lt;h1&gt;🌍 Virtual World Tour&lt;/h1&gt;
    &lt;p&gt;Pay ₹1 to unlock and explore famous cities around the world!&lt;/p&gt;
    &lt;button onclick=&quot;simulatePayment()&quot;&gt;Pay ₹1 to Start Tour&lt;/button&gt;
  &lt;/div&gt;

  &lt;script&gt;
    const cityData = {
      &quot;Paris&quot;: &quot;https://www.google.com/maps/embed?pb=!4v1589795721916!6m8!1m7!1sCAoSLEFGMVFpcE9HeTdOSXROeGN5MmlScFVmd2hPU2dzWjRldzFTb2hZVlV2eG5U!2m2!1d48.8588443!2d2.2943506!3f75!4f0!5f0.7820865974627469&quot;,
      &quot;New York&quot;: &quot;https://www.google.com/maps/embed?pb=!4v1590389507903!6m8!1m7!1sCAoSLEFGMVFpcE14enR6cGFUSmMwZ2RZbDZmTk80eC1mRk8zOVZDUU9sNzdlU0dy!2m2!1d40.758896!2d-73.985130!3f0!4f0!5f0.7820865974627469&quot;,
      &quot;Tokyo&quot;: &quot;https://www.google.com/maps/embed?pb=!4v1590390030260!6m8!1m7!1sCAoSLEFGMVFpcE80Y1pob3A3dEpVNmhnWmdGRmZsbkZ4LUJ4OFR0RmE1UlFZQUxY!2m2!1d35.689487!2d139.691711!3f0!4f0!5f0.7820865974627469&quot;,
      &quot;Dubai&quot;: &quot;https://www.google.com/maps/embed?pb=!4v1689829859092!6m8!1m7!1sCAoSLEFGMVFpcFBVb2F5SkZQbXpDTW5zMG5hb3J6WXdtR0E0TkZUZERyb09XWlYw!2m2!1d25.1972!2d55.2744!3f0!4f0!5f0.7820865974627469&quot;
    };

    function simulatePayment() {
      const app = document.getElementById(&#39;app&#39;);
      app.innerHTML = `
        &lt;h2&gt;Choose a City &amp; Transport Type&lt;/h2&gt;
        &lt;select id=&quot;citySelect&quot;&gt;
          &lt;option value=&quot;Paris&quot;&gt;Paris&lt;/option&gt;
          &lt;option value=&quot;New York&quot;&gt;New York&lt;/option&gt;
          &lt;option value=&quot;Tokyo&quot;&gt;Tokyo&lt;/option&gt;
          &lt;option value=&quot;Dubai&quot;&gt;Dubai&lt;/option&gt;
        &lt;/select&gt;
        &lt;select id=&quot;transportSelect&quot;&gt;
          &lt;option value=&quot;walk&quot;&gt;Walk&lt;/option&gt;
          &lt;option value=&quot;car&quot;&gt;Car&lt;/option&gt;
          &lt;option value=&quot;bike&quot;&gt;Bike&lt;/option&gt;
          &lt;option value=&quot;bus&quot;&gt;Bus&lt;/option&gt;
        &lt;/select&gt;
        &lt;button onclick=&quot;loadTour()&quot;&gt;Start Tour&lt;/button&gt;
        &lt;div id=&quot;tourFrame&quot;&gt;&lt;/div&gt;
      `;
    }

    function loadTour() {
      const city = document.getElementById(&#39;citySelect&#39;).value;
      const transport = document.getElementById(&#39;transportSelect&#39;).value;
      const iframeURL = cityData[city];

      // Just a placeholder — in future, you can use the transport type to modify view
      document.getElementById(&#39;tourFrame&#39;).innerHTML = `
        &lt;h3&gt;Exploring ${city} by ${transport}...&lt;/h3&gt;
        &lt;iframe src=&quot;${iframeURL}&quot; allowfullscreen&gt;&lt;/iframe&gt;
      `;
    }
  &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/6293078797389059572/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2025/06/virtual-world-tour-body-font-family.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/6293078797389059572'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/6293078797389059572'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2025/06/virtual-world-tour-body-font-family.html' title='virtual world tour'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-7531956924341145457</id><published>2023-08-21T18:37:00.005+05:30</published><updated>2023-08-21T18:40:06.288+05:30</updated><title type='text'>celender</title><content type='html'>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
&lt;link href=&quot;https://cdn.jsdelivr.net/npm/fullcalendar@5.10.1/main.css&quot; rel=&quot;stylesheet&quot;&gt;
&lt;script src=&quot;https://cdn.jsdelivr.net/npm/moment@2.29.1/moment.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdn.jsdelivr.net/npm/fullcalendar@5.10.1/main.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdn.jsdelivr.net/npm/fullcalendar@5.10.1/interaction/main.min.js&quot;&gt;&lt;/script&gt;
&lt;title&gt;Content Calendar&lt;/title&gt;
&lt;style&gt;
  #calendar {
    max-width: 900px;
    margin: 0 auto;
  }
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;h1&gt;Content Calendar&lt;/h1&gt;
  &lt;div id=&quot;calendar&quot;&gt;&lt;/div&gt;

  &lt;script&gt;
    document.addEventListener(&#39;DOMContentLoaded&#39;, function() {
      var calendarEl = document.getElementById(&#39;calendar&#39;);
      var calendar = new FullCalendar.Calendar(calendarEl, {
        initialView: &#39;dayGridMonth&#39;,
        events: [
          // Define your events here
          // Example: { title: &#39;Event 1&#39;, start: &#39;2023-08-01&#39; },
        ]
      });
      calendar.render();
    });
  &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/7531956924341145457/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/08/celender.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/7531956924341145457'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/7531956924341145457'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/08/celender.html' title='celender'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-3340138335696776693</id><published>2023-08-20T13:13:00.005+05:30</published><updated>2023-08-20T13:13:53.027+05:30</updated><title type='text'>Unleash Your Inner Strength: A Journey to Fitness and Wellness</title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;&amp;nbsp;Title: Unleash Your Inner Strength: A Journey to Fitness and Wellness**&lt;/h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;*Introduction:*&lt;/p&gt;&lt;p&gt;Welcome to [Your Fitness Blog Name]! We&#39;re thrilled to have you embark on a journey of health, strength, and overall well-being. Whether you&#39;re a seasoned fitness enthusiast or taking your first steps towards a healthier lifestyle, this blog is your one-stop destination for expert advice, inspiring stories, and practical tips to guide you on your fitness adventure.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;**1. The Foundation of Fitness: Setting Your Goals**&lt;/p&gt;&lt;p&gt;Before you dive headfirst into your fitness journey, it&#39;s essential to define your goals. Are you aiming to lose weight, build muscle, improve cardiovascular health, or simply increase your overall energy levels? Clearly outlining your objectives will give you direction and motivation as you progress.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;**2. Crafting Your Workout Routine: Finding What Fits**&lt;/p&gt;&lt;p&gt;The perfect workout routine is like a tailored suit - it should suit your unique preferences, fitness level, and lifestyle. Explore different types of exercises, from strength training and cardio to yoga and pilates. Remember, consistency is key, so choose activities you genuinely enjoy to keep the momentum going.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;**3. Fueling Your Body: The Power of Nutrition**&lt;/p&gt;&lt;p&gt;Your body is a machine that requires proper fuel to perform at its best. A balanced diet rich in lean proteins, whole grains, fruits, and vegetables is the cornerstone of your fitness journey. Discover the art of meal prepping, smart snacking, and hydration to ensure your body gets the nutrients it needs to thrive.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;**4. Overcoming Obstacles: Staying Motivated**&lt;/p&gt;&lt;p&gt;No fitness journey is without its challenges. Plateaus, busy schedules, and moments of self-doubt are normal. Learn effective strategies to overcome these hurdles, such as setting small milestones, joining fitness communities, and practicing self-care. Remember, progress is a journey, not a destination.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;**5. The Mind-Body Connection: Embracing Wellness**&lt;/p&gt;&lt;p&gt;True fitness goes beyond physical strength. Cultivating mental and emotional well-being is equally important. Explore mindfulness techniques, meditation, and stress-relief practices to achieve a holistic sense of wellness that complements your physical efforts.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;**6. Celebrating Progress: Tracking and Rewarding Yourself**&lt;/p&gt;&lt;p&gt;Tracking your progress can be incredibly motivating. Keep a fitness journal, take progress photos, or use wearable technology to monitor your achievements. Don&#39;t forget to celebrate your victories, both big and small, to keep your spirits high and your enthusiasm alive.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;**7. Expert Insights: Interviews and Guest Posts**&lt;/p&gt;&lt;p&gt;Stay informed with insights from fitness experts, trainers, and nutritionists. Interviews and guest posts will provide you with diverse perspectives, cutting-edge research, and valuable advice to enhance your fitness journey.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;**8. Inspiring Success Stories: Real People, Real Results**&lt;/p&gt;&lt;p&gt;There&#39;s nothing more motivating than real-life success stories. Share tales of individuals who have transformed their lives through fitness. Their stories will remind you that with dedication and persistence, incredible transformations are possible.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;*Conclusion:*&lt;/p&gt;&lt;p&gt;Thank you for joining us on this exciting journey to a healthier and stronger you. Remember, your fitness journey is unique, and there&#39;s no one-size-fits-all approach. Stay committed, be patient with yourself, and embrace every step of the process. Your determination and hard work will lead you to a life filled with vitality, confidence, and a renewed sense of well-being. Let&#39;s embark on this adventure together and make your fitness goals a reality!&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/3340138335696776693/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/08/unleash-your-inner-strength-journey-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/3340138335696776693'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/3340138335696776693'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/08/unleash-your-inner-strength-journey-to.html' title='Unleash Your Inner Strength: A Journey to Fitness and Wellness'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-7322238135801385711</id><published>2023-07-18T09:25:00.001+05:30</published><updated>2023-07-18T09:25:37.328+05:30</updated><title type='text'>Unleashing the Power Within: Embracing the Bhagavad Gita&#39;s Timeless Wisdom</title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;Unleashing the Power Within: Embracing the Bhagavad Gita&#39;s Timeless Wisdom&lt;/h1&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_10QmkYU-Npzm53gxTFBB_cK9SwEHmj7diPDNN-_71NcCBP9FplxARpG3ZDrfHNK8DanV7k-oif3optKAgPsG3eAyEnoRbtprTzQ34IhM-okbQvvuMIHKXdtJN6dB6Qwb7-2RuJMq95GiOyqGrtDmAlCAMMbOsAyTVNMbtcV_GU2PkKQ7QFKBaaAqhtau/s1500/81YC6O+-qbL._AC_SL1500_.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1500&quot; data-original-width=&quot;878&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_10QmkYU-Npzm53gxTFBB_cK9SwEHmj7diPDNN-_71NcCBP9FplxARpG3ZDrfHNK8DanV7k-oif3optKAgPsG3eAyEnoRbtprTzQ34IhM-okbQvvuMIHKXdtJN6dB6Qwb7-2RuJMq95GiOyqGrtDmAlCAMMbOsAyTVNMbtcV_GU2PkKQ7QFKBaaAqhtau/s320/81YC6O+-qbL._AC_SL1500_.jpg&quot; width=&quot;187&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Introduction:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;In the vast tapestry of spiritual literature, few works have transcended time and culture like the Bhagavad Gita. This ancient scripture, revered as a guiding light by millions, encapsulates profound teachings that continue to resonate with seekers of truth and wisdom. Today, we explore the transformative influence of the Bhagavad Gita and how its timeless wisdom can empower us to navigate the complexities of modern life.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;1. Finding Purpose and Inner Harmony:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;At the heart of the Bhagavad Gita lies the eternal quest for purpose and fulfillment. Arjuna&#39;s dilemma on the battlefield symbolizes the inner conflicts we all face. As we delve into the Gita&#39;s verses, we discover that true success lies not in external achievements but in aligning our actions with our dharma (duty) and embracing selfless service. This profound insight reminds us to cultivate inner harmony by connecting with our unique life&#39;s purpose.&lt;/p&gt;&lt;p&gt;Buy now - &lt;a href=&quot;https://amzn.eu/d/b6YLgmP&quot; target=&quot;_blank&quot;&gt;Bhagvad Gita As It Is English New Edition&lt;/a&gt;&lt;/p&gt;&lt;p&gt;2. Embracing Mindfulness and Equanimity:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;In a world often plagued by chaos and uncertainty, the Bhagavad Gita teaches us the art of mindfulness and equanimity. Krishna&#39;s teachings guide Arjuna to maintain a balanced state of mind amidst adversity, urging him to perform his duties without attachment to the outcomes. This powerful message resonates with us today, reminding us to stay present, focused, and resilient in the face of life&#39;s challenges.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;3. Embracing Self-Transformation:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;The Bhagavad Gita encourages us to embark on a journey of self-transformation. It emphasizes the importance of self-discipline, self-reflection, and self-mastery. By understanding and transcending our limitations, we can rise above our own ego, fears, and desires. The Gita teaches us to embrace our higher selves and strive for self-realization, ultimately leading to inner peace and spiritual growth.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;4. Nurturing Universal Love and Compassion:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;At its core, the Bhagavad Gita promotes universal love and compassion as guiding principles for our actions. Krishna&#39;s teachings emphasize the unity of all beings, transcending barriers of caste, creed, and nationality. By cultivating empathy and compassion, we foster an inclusive mindset that promotes harmony and fosters positive change in our relationships, communities, and the world at large.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Conclusion:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;The Bhagavad Gita stands as a timeless beacon of wisdom, offering guidance for those seeking personal growth and spiritual enlightenment. Its teachings transcend the boundaries of time and culture, resonating with individuals across generations. By integrating the Bhagavad Gita&#39;s profound wisdom into our lives, we can find purpose, navigate challenges with equanimity, embark on a journey of self-transformation, and cultivate love and compassion for all beings. Let us embrace this sacred scripture and unlock the power within ourselves to create a more harmonious and fulfilling life.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Remember, as Krishna reminds Arjuna, &quot;Yoga is the journey of the self, through the self, to the self.&quot; Let the Bhagavad Gita be your guide on this transformative journey.&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/7322238135801385711/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/07/unleashing-power-within-embracing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/7322238135801385711'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/7322238135801385711'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/07/unleashing-power-within-embracing.html' title='Unleashing the Power Within: Embracing the Bhagavad Gita&#39;s Timeless Wisdom'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_10QmkYU-Npzm53gxTFBB_cK9SwEHmj7diPDNN-_71NcCBP9FplxARpG3ZDrfHNK8DanV7k-oif3optKAgPsG3eAyEnoRbtprTzQ34IhM-okbQvvuMIHKXdtJN6dB6Qwb7-2RuJMq95GiOyqGrtDmAlCAMMbOsAyTVNMbtcV_GU2PkKQ7QFKBaaAqhtau/s72-c/81YC6O+-qbL._AC_SL1500_.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-4378740389620994765</id><published>2023-06-29T14:05:00.002+05:30</published><updated>2023-06-29T14:05:43.549+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="10th Board certification exam result year 2023"/><category scheme="http://www.blogger.com/atom/ns#" term="Movies"/><title type='text'>No hard feelings full movie review 2023</title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;&amp;nbsp;No hard feelings Full movie review 2023 || Jennifer red band trailer&lt;/h1&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2sw2ssn51yd-imbS9A0A7Z3aN1ho2sB9Eryei3fp12cq8UMkVF60mbSJufxuysEGeirCtjIP4heUC-8MrWsoPRdvl-FYD-1r-h06LOCE5cxb4YI3TkTb6pEoaY7JGnHdj2hApEdG33EZeoM42Q1wnPAGy9nlRRY-gLvmtSEJjUCwg10qrPvQ-_54P7bVy/s920/b11956e4f7cd2f8c090d7d5e2710820b.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;No hard feelings&quot; border=&quot;0&quot; data-original-height=&quot;920&quot; data-original-width=&quot;736&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2sw2ssn51yd-imbS9A0A7Z3aN1ho2sB9Eryei3fp12cq8UMkVF60mbSJufxuysEGeirCtjIP4heUC-8MrWsoPRdvl-FYD-1r-h06LOCE5cxb4YI3TkTb6pEoaY7JGnHdj2hApEdG33EZeoM42Q1wnPAGy9nlRRY-gLvmtSEJjUCwg10qrPvQ-_54P7bVy/w256-h320/b11956e4f7cd2f8c090d7d5e2710820b.jpg&quot; title=&quot;No hard feelings 480p hindi&quot; width=&quot;256&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;h3 style=&quot;text-align: left;&quot;&gt;**No Hard Feelings: A Raunchy Comedy with a Heart**&lt;/h3&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;No Hard Feelings is a 2023 American comedy film directed by Gene Stupnitsky and starring Jennifer Lawrence, Andrew Barth Feldman, and Bryan Cranston. The film follows Maddie (Lawrence), a 32-year-old woman who agrees to date a wealthy couple&#39;s introverted and awkward 19-year-old son, Percy (Feldman), in order to earn a Buick sedan. However, the two quickly form an unlikely bond, and Maddie finds herself teaching Percy about the world, while he teaches her about herself.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The film&#39;s premise is certainly raunchy, but it&#39;s also surprisingly sweet and heartwarming. Lawrence is great as Maddie, and she brings a lot of heart to the role. Feldman is also very good as Percy, and he makes the character both endearing and funny. The supporting cast is also solid, with Cranston, Stephanie Beatriz, and Wallace Shawn all giving memorable performances.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Stupnitsky&#39;s direction is sure-handed, and he keeps the film moving at a brisk pace. The film&#39;s humor is mostly hit-and-miss, but there are some truly laugh-out-loud moments. The film also has a surprisingly tender heart, and it&#39;s ultimately a story about finding love and acceptance in unexpected places.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;No Hard Feelings is not a perfect film, but it&#39;s a surprisingly charming and funny comedy with a lot of heart. If you&#39;re looking for a film that will make you laugh and cry, then No Hard Feelings is definitely worth checking out.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;**Here are some of the things that make No Hard Feelings a unique and engaging film:**&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;* The film&#39;s premise is both raunchy and heartwarming, which makes for a refreshingly original comedy.&lt;/div&gt;&lt;div&gt;* Jennifer Lawrence gives a great performance as Maddie, and she brings a lot of heart to the role.&lt;/div&gt;&lt;div&gt;* Andrew Barth Feldman is also very good as Percy, and he makes the character both endearing and funny.&lt;/div&gt;&lt;div&gt;* The supporting cast is also solid, with Cranston, Beatriz, and Shawn all giving memorable performances.&lt;/div&gt;&lt;div&gt;* Stupnitsky&#39;s direction is sure-handed, and he keeps the film moving at a brisk pace.&lt;/div&gt;&lt;div&gt;* The film&#39;s humor is mostly hit-and-miss, but there are some truly laugh-out-loud moments.&lt;/div&gt;&lt;div&gt;* The film also has a surprisingly tender heart, and it&#39;s ultimately a story about finding love and acceptance in unexpected places.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;**Overall, No Hard Feelings is a surprisingly charming and funny comedy with a lot of heart. If you&#39;re looking for a film that will make you laugh and cry, then No Hard Feelings is definitely worth checking out.**&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/4378740389620994765/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/06/no-hard-feelings-full-movie-review-2023.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/4378740389620994765'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/4378740389620994765'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/06/no-hard-feelings-full-movie-review-2023.html' title='No hard feelings full movie review 2023'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2sw2ssn51yd-imbS9A0A7Z3aN1ho2sB9Eryei3fp12cq8UMkVF60mbSJufxuysEGeirCtjIP4heUC-8MrWsoPRdvl-FYD-1r-h06LOCE5cxb4YI3TkTb6pEoaY7JGnHdj2hApEdG33EZeoM42Q1wnPAGy9nlRRY-gLvmtSEJjUCwg10qrPvQ-_54P7bVy/s72-w256-h320-c/b11956e4f7cd2f8c090d7d5e2710820b.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-2719921979700744613</id><published>2023-06-06T16:20:00.001+05:30</published><updated>2023-06-06T16:20:26.957+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Motivation story in hindi"/><title type='text'>Motivational story in hindi for success in studies for students</title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;दृढ़ता की शक्ति: सफलता की यात्रा&amp;nbsp;&lt;/h1&gt;&lt;div&gt;Motivational story in hindi for students to success in studies and get higher education. Hindi motivation story ||tamil |books | English |life |safalta|hindi |short |motivation.&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;परिचय:&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;इतिहास के इतिहास में, विजय की कहानियां अक्सर एक सामान्य सूत्र साझा करती हैं: उन व्यक्तियों की अदम्य भावना जो विपत्ति के आगे घुटने टेकने से इनकार करते हैं।  उनकी कहानियाँ हमें प्रेरित करती हैं, हमें याद दिलाती हैं कि सफलता केवल असफलता की अनुपस्थिति नहीं है बल्कि अटूट दृढ़ संकल्प और दृढ़ता का परिणाम है।  यह लेख सारा की उल्लेखनीय यात्रा के माध्यम से लचीलापन की परिवर्तनकारी शक्ति की पड़ताल करता है, एक युवा महिला जिसने अपने सपनों को हासिल करने के लिए सभी बाधाओं को टाल दिया।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;प्रारंभिक चुनौतियाँ:&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;सारा की सफलता का मार्ग शुरू से ही बाधाओं से भरा था।  एक छोटे शहर में एक विनम्र परिवार में जन्मी, उन्हें वित्तीय कठिनाइयों और सीमित शैक्षिक अवसरों का सामना करना पड़ा।  उसके खिलाफ ढेर सारी बाधाओं के बावजूद, सारा ने ज्ञान के लिए एक निर्विवाद प्यास और अपनी क्षमताओं में एक अटूट विश्वास रखा।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;स्कूल में, उसने एक दृढ़ता प्रदर्शित की जिसने उसे अपने साथियों से अलग कर दिया।  जबकि अन्य आत्म-संदेह या सामाजिक दबावों के आगे झुक गए, सारा ने लगन से अपने लक्ष्यों के लिए काम किया।  हालाँकि उसे असफलताओं और हताशा के क्षणों का सामना करना पड़ा, लेकिन उसका लचीलापन अडिग रहा।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;परिस्थितियों से ऊपर उठना:&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;जैसे ही सारा ने स्नातक स्तर की पढ़ाई की, वह उच्च शिक्षा के लिए तरस गई, अपने क्षितिज को व्यापक बनाने और एक उज्जवल भविष्य का मार्ग प्रशस्त करने के लिए उत्सुक थी।  हालांकि, कॉलेज की लागत निषेधात्मक थी, और छात्रवृत्ति पहुंच से बाहर लग रही थी।  अधीर, सारा ने अवसरों की अथक खोज शुरू कर दी।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;उसने अनुदान, छात्रवृत्ति और अंशकालिक नौकरियों के लिए अथक रूप से आवेदन करते हुए, इंटरनेट को खंगाल डाला।  अनगिनत अस्वीकृति पत्र आए, लेकिन सारा ने निराश होने से इनकार कर दिया।  हर झटके के साथ उसका संकल्प और मजबूत होता गया।  उसने अपनी असफलताओं को अपनी यात्रा के पत्थरों के रूप में स्वीकार किया, मूल्यवान सबक सीखे और अपने लचीलेपन का सम्मान किया।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;एक सफलता:&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;महीनों की कड़ी मेहनत के बाद, सारा का दृढ़ निश्चय रंग लाया।  उन्हें एक छात्रवृत्ति मिली जिसने उनकी ट्यूशन फीस को कवर किया, जिससे उच्च शिक्षा के द्वार खुल गए।  उसकी खुशी की कोई सीमा नहीं थी क्योंकि उसे एहसास हुआ कि दृढ़ता और अटूट विश्वास सपनों को हकीकत में बदल सकता है।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;कॉलेज जीवन ने चुनौतियों का अपना सेट पेश किया।  पाठ्यक्रम की मांग थी, और सारा अक्सर खुद को अभिभूत पाती थी।  शंकाओं और असुरक्षाओं ने उसकी प्रगति को पटरी से उतारने की धमकी दी, लेकिन उसने अपनी पिछली जीत से ताकत हासिल की और खुद को उन बाधाओं की याद दिलाई, जिन्हें उसने पहले ही पार कर लिया था।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;एक समर्थन नेटवर्क का निर्माण:&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;एक मजबूत समर्थन नेटवर्क के महत्व को पहचानते हुए, सारा ने उन सलाहकारों की तलाश की जो उन्हें अपने पथ पर मार्गदर्शन कर सकें।  वह अध्ययन समूहों में शामिल हो गई, पाठ्येतर गतिविधियों में शामिल हो गई, और परिसर की घटनाओं में सक्रिय रूप से भाग लिया।  समान विचारधारा वाले व्यक्तियों के साथ खुद को घेरने से, उन्हें प्रेरणा, प्रोत्साहन और अमूल्य सलाह मिली।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;बदले में, सारा दूसरों के लिए प्रेरणा का स्रोत बन गई, उसने अपनी यात्रा साझा की और साथी छात्रों को अपने सपनों को नहीं छोड़ने के लिए प्रोत्साहित किया।  उसने महसूस किया कि उसकी कहानी सिर्फ उसकी अपनी नहीं थी;  उसके पास उसके आसपास के लोगों में आशा और दृढ़ संकल्प को प्रज्वलित करने की शक्ति थी।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;परिवर्तन का बिन्दू:&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;जैसे ही सारा अपनी कॉलेज की शिक्षा के अंत के करीब पहुंची, उसे एक महत्वपूर्ण क्षण का सामना करना पड़ा।  भयंकर प्रतिस्पर्धा और आर्थिक अनिश्चितताओं को देखते हुए अपने चुने हुए क्षेत्र में नौकरी हासिल करने की संभावना कठिन लग रही थी।  नौकरी बाजार में जबरदस्त प्रतिस्पर्धा थी, और अस्वीकृति पत्रों का ढेर लगना शुरू हो गया।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;हालाँकि, सारा ने असफलताओं को उसे परिभाषित करने से मना कर दिया।  इसके बजाय, उसने अपनी ऊर्जा को आत्म-सुधार, कार्यशालाओं में भाग लेने, नेटवर्किंग कार्यक्रमों में भाग लेने और अपने फिर से शुरू और साक्षात्कार कौशल को चमकाने में लगाया।  उसने पहचाना कि केवल दृढ़ता ही काफी नहीं थी;  इसे निरंतर विकास और अनुकूलन की इच्छा के साथ जोड़ा जाना चाहिए।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;सफलता और परे:&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;सारा के अथक प्रयासों ने अंततः भुगतान किया, क्योंकि उसने एक इंटर्नशिप हासिल की जिसने अमूल्य अनुभव प्रदान किया और एक सफल करियर के द्वार खोले।  उसके दृढ़ संकल्प और कार्य नैतिकता ने उसे अलग कर दिया, जिससे उसके क्षेत्र में पदोन्नति और मान्यता प्राप्त हुई।&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;आज सारा दृढ़ता की शक्ति के लिए एक जीवित वसीयतनामा के रूप में खड़ी है।  उनकी यात्रा उन अनगिनत लोगों के लिए आशा की किरण के रूप में कार्य करती है, जिनका सामना वे कर रहे हैं&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/2719921979700744613/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/06/motivational-story-in-hindi-for-success.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/2719921979700744613'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/2719921979700744613'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/06/motivational-story-in-hindi-for-success.html' title='Motivational story in hindi for success in studies for students'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-5876743209052202515</id><published>2023-05-31T13:11:00.003+05:30</published><updated>2023-05-31T13:11:42.101+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="2 line suvichar"/><title type='text'>दो लाइन का सुविचार - suvichar in hindi </title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;&amp;nbsp;दो लाइन का सुविचार - suvichar in hindi |&lt;br /&gt;&lt;/h1&gt;&lt;h3 style=&quot;text-align: left;&quot;&gt;Hindi suvichar suvichar | do line ka suvichar | suvichar hindi me | motivation lines | motivation hindi | hindi suvichar hindi&amp;nbsp;&lt;/h3&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZJ9UOWsqhdPV0Vg8Q0Tbe2HFAjBVuAdJjquWIm27xqjctM8WF5lagJgOApl2jjmpSWhpnGznQxNSj6NRnEL-C8BphfjwI8vFp08q7cnIpVuON0M0q3iN2qTIuNeUifWEsxzcDD21bd1sv7d2KUaUJuPr1ww4SZVo8s6_tU42LvyaaiicisHdcLsIp3g/s1280/IMG-20230531-WA0002.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Suvichar xking360&quot; border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1280&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZJ9UOWsqhdPV0Vg8Q0Tbe2HFAjBVuAdJjquWIm27xqjctM8WF5lagJgOApl2jjmpSWhpnGznQxNSj6NRnEL-C8BphfjwI8vFp08q7cnIpVuON0M0q3iN2qTIuNeUifWEsxzcDD21bd1sv7d2KUaUJuPr1ww4SZVo8s6_tU42LvyaaiicisHdcLsIp3g/w320-h180/IMG-20230531-WA0002.jpg&quot; title=&quot;Suvichar xking360&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;1. &quot;महान कार्य करने का एकमात्र तरीका यह है कि आप जो करते हैं उससे प्यार करें।&quot;  - स्टीव जॉब्स&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiUHZstn_5cDd5btWwcT1x9V69YNF5QleYOFdXrCB6Dsra8MXVTW8I8Ci19zgOrWD1BuslNHXCqIun43Pg5kGwucZ-VeLL6n-sTC9jk0P0j3eFFl_XLr0YN2XliINgC0613ZtrHp8Y9u0N4L5eJBPN4BVdmfIb5YjZb4OKTpZsJ3-9i3yZ3VFr2hxoKVw/s1280/IMG-20230531-WA0004.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Suvichar xking360&quot; border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1280&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiUHZstn_5cDd5btWwcT1x9V69YNF5QleYOFdXrCB6Dsra8MXVTW8I8Ci19zgOrWD1BuslNHXCqIun43Pg5kGwucZ-VeLL6n-sTC9jk0P0j3eFFl_XLr0YN2XliINgC0613ZtrHp8Y9u0N4L5eJBPN4BVdmfIb5YjZb4OKTpZsJ3-9i3yZ3VFr2hxoKVw/w320-h180/IMG-20230531-WA0004.jpg&quot; title=&quot;Suvichar xking360&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;text-align: left;&quot;&gt;&amp;nbsp;2. &quot;विश्वास करें कि आप कर सकते हैं, और आप आधे रास्ते में हैं।&quot;  - थियोडोर रूजवेल्ट&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtFz6PGsL-eLBP494FnCHxrrsTcEbF8pntJjTTp7KtaOrv57swK7gtXEZRcmHM8gmxUpX7G0QTM3e0tddTVCiBqVELNd9-bMO8gsOzDvgufatjQ-fo__qX31-GNg3F74HFpyJ72kOX_DUrST4FZIA8tEddRMr63CRaN6LXTrXDfPIpv4t-IP0HMIYIbw/s1280/IMG-20230531-WA0003.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Suvichar xking360&quot; border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1280&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtFz6PGsL-eLBP494FnCHxrrsTcEbF8pntJjTTp7KtaOrv57swK7gtXEZRcmHM8gmxUpX7G0QTM3e0tddTVCiBqVELNd9-bMO8gsOzDvgufatjQ-fo__qX31-GNg3F74HFpyJ72kOX_DUrST4FZIA8tEddRMr63CRaN6LXTrXDfPIpv4t-IP0HMIYIbw/w320-h180/IMG-20230531-WA0003.jpg&quot; title=&quot;Suvichar xking360&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;3. &quot;हर कठिनाई के बीच में अवसर निहित होता है।&quot;  - अल्बर्ट आइंस्टीन&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzuPkphTNGrxracl8b0RaqdOWEJSItHqjsQA4S1KGDKhCosyNk372Iqm2-CcYzPRHMyykxD_WGLryOo7o5VvHAXIJBPXRBo5HgUB41DzNjyksQrR7xgoSB8XQXymPxr1-F_ASx7KIyOY5s5pGIgfMRaETFZZB2uvegJed1JULSp-8ypvSjj7CHRSFuyg/s1280/IMG-20230531-WA0006.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Suvichar xking360&quot; border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1280&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzuPkphTNGrxracl8b0RaqdOWEJSItHqjsQA4S1KGDKhCosyNk372Iqm2-CcYzPRHMyykxD_WGLryOo7o5VvHAXIJBPXRBo5HgUB41DzNjyksQrR7xgoSB8XQXymPxr1-F_ASx7KIyOY5s5pGIgfMRaETFZZB2uvegJed1JULSp-8ypvSjj7CHRSFuyg/w320-h180/IMG-20230531-WA0006.jpg&quot; title=&quot;Suvichar xking360&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;4. &quot;कल के लिए सबसे अच्छी तैयारी आज अपना सर्वश्रेष्ठ करना है।&quot;  - एच जैक्सन ब्राउन जूनियर&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigkyGDym8NQSJ-JYvz9UEy5BgnERUUXbQ5oWRnTpWpTRH-4Mt7VldIG2ybt8CAwKAuLVyxJNzteMMTJ-LiAagWveLqWW3HV-Gu4uXWqfq_GIRGrgKkGMwAONzq8dWzw7W51rwi8sXFzlpj-60yDu9joZXF0CBaZi6AWap-ZG8qrKe76x55O1eLnemo9Q/s1280/IMG-20230531-WA0005.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Suvichar xking360&quot; border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1280&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigkyGDym8NQSJ-JYvz9UEy5BgnERUUXbQ5oWRnTpWpTRH-4Mt7VldIG2ybt8CAwKAuLVyxJNzteMMTJ-LiAagWveLqWW3HV-Gu4uXWqfq_GIRGrgKkGMwAONzq8dWzw7W51rwi8sXFzlpj-60yDu9joZXF0CBaZi6AWap-ZG8qrKe76x55O1eLnemo9Q/w320-h180/IMG-20230531-WA0005.jpg&quot; title=&quot;Suvichar xking360&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;5. &quot;सफलता अंतिम नहीं है, असफलता घातक नहीं है: यह जारी रखने का साहस है जो मायने रखता है।&quot;  - विंस्टन चर्चिल&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqux2L7RshZvO1mNqJsh1zRGyUT5hgyhILqqguS0CHpvQevWX1ExVfLXqf8t0x4oDKkg6Ic7wVjdBkKiwwrz11c5R_8Rrfak5jLnnFEegk7AqTFcgeC4NJTou9RrzAjHMo1qeKyYizJvhzCjMzLmh43v92qDB5V3tWxMh-eNLoNjp4z5d9e6ugIpxPwg/s1280/IMG-20230531-WA0008.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Suvichar xking360&quot; border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1280&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqux2L7RshZvO1mNqJsh1zRGyUT5hgyhILqqguS0CHpvQevWX1ExVfLXqf8t0x4oDKkg6Ic7wVjdBkKiwwrz11c5R_8Rrfak5jLnnFEegk7AqTFcgeC4NJTou9RrzAjHMo1qeKyYizJvhzCjMzLmh43v92qDB5V3tWxMh-eNLoNjp4z5d9e6ugIpxPwg/w320-h180/IMG-20230531-WA0008.jpg&quot; title=&quot;Suvichar xking360&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;6. &quot;खुशी कोई बनी-बनाई चीज नहीं है। यह आपके अपने कार्यों से आती है।&quot;  - दलाई लामा&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNPLwcrKMEztuFwX2IlxcqTPwATwr3nv675rqCC7tO4xOevwFgg-BX1kNxldbIRpbF8BU7Th0Sv3xYAFjO1KyKZ4FJeghStwzRQc8jNU2elcxfq9QbkLnXJvXlQpTXBRiIfTXuFtr6NfcG6IqPDLSRbEG0GRsXGV9cmbvOsBnIf6YtpyOkCuFzUu6QHQ/s1280/IMG-20230531-WA0009.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Suvichar xking360&quot; border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1280&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNPLwcrKMEztuFwX2IlxcqTPwATwr3nv675rqCC7tO4xOevwFgg-BX1kNxldbIRpbF8BU7Th0Sv3xYAFjO1KyKZ4FJeghStwzRQc8jNU2elcxfq9QbkLnXJvXlQpTXBRiIfTXuFtr6NfcG6IqPDLSRbEG0GRsXGV9cmbvOsBnIf6YtpyOkCuFzUu6QHQ/w320-h180/IMG-20230531-WA0009.jpg&quot; title=&quot;Suvichar xking360&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;7. &quot;कल के हमारे अहसास की एकमात्र सीमा आज के बारे में हमारी शंका होगी।&quot;  - फ्रैंकलिन डी. रूजवेल्ट&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJKePX8wMdm4T3o3CFIyHVMUQvtJsWJzp4JarsUR7ZbXlY3Qkf1HJrJsnByXr7aqRyRNuw-xP6oR2vh-T1xSsUDJsq0yAGbbskYHRRB5U2qUrD1UxCBBaKuMQffAZrBZxdmiwPr26QFycMt_kiVpQDm3ItZ-WreT9Jz9jsxS41qwj6fGs9Oh10mPUczQ/s1280/IMG-20230531-WA0007.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Suvichar xking360&quot; border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1280&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJKePX8wMdm4T3o3CFIyHVMUQvtJsWJzp4JarsUR7ZbXlY3Qkf1HJrJsnByXr7aqRyRNuw-xP6oR2vh-T1xSsUDJsq0yAGbbskYHRRB5U2qUrD1UxCBBaKuMQffAZrBZxdmiwPr26QFycMt_kiVpQDm3ItZ-WreT9Jz9jsxS41qwj6fGs9Oh10mPUczQ/w320-h180/IMG-20230531-WA0007.jpg&quot; title=&quot;Suvichar xking360&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;8. &quot;जीने में सबसे बड़ी महिमा कभी न गिरने में नहीं है, बल्कि हर बार गिरकर उठ जाने में है।&quot;  - नेल्सन मंडेला&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTDtgTTA3u__vWwm23YavnO--pF35uMHGT4sDeQQkecNMNX5MuJAE98_ua85RPXRaKIMCRs5QxgZuOvnrPqHX7LZ7RHdibIxzd3kdNnxBKvCHyzuPHVYINVik45xRkUTNf4IG7OX4zHlbmFu7rVjnSDvupCLkW8fymWPpsspPCAiexp-2sA8lUWr9jMA/s1280/IMG-20230531-WA0010.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Suvichar xking360&quot; border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1280&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTDtgTTA3u__vWwm23YavnO--pF35uMHGT4sDeQQkecNMNX5MuJAE98_ua85RPXRaKIMCRs5QxgZuOvnrPqHX7LZ7RHdibIxzd3kdNnxBKvCHyzuPHVYINVik45xRkUTNf4IG7OX4zHlbmFu7rVjnSDvupCLkW8fymWPpsspPCAiexp-2sA8lUWr9jMA/w320-h180/IMG-20230531-WA0010.jpg&quot; title=&quot;Suvichar xking360&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;9. &quot;आपका समय सीमित है, इसे किसी और की जिंदगी जीने में बर्बाद न करें।&quot;  - स्टीव जॉब्स&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjVATUGm7aI98cNchWulIz4mBWLmHVB6fXvr1erBy1vb1AMQxSzeSv6E6hLMrOMX4-43QxmtLJ3AaYuKoOL1pKdIgnCS4IzTjaMi9neUggnMHdsQgYMyCcB-525nCc865tBiZdo0PF1lFzpGCXCTb8Fb2bNPjOkrOAV59-08tNKwqrQQ-_kg7VKRuSmCg/s1280/IMG-20230531-WA0011.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Suvichar xking360&quot; border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1280&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjVATUGm7aI98cNchWulIz4mBWLmHVB6fXvr1erBy1vb1AMQxSzeSv6E6hLMrOMX4-43QxmtLJ3AaYuKoOL1pKdIgnCS4IzTjaMi9neUggnMHdsQgYMyCcB-525nCc865tBiZdo0PF1lFzpGCXCTb8Fb2bNPjOkrOAV59-08tNKwqrQQ-_kg7VKRuSmCg/w320-h180/IMG-20230531-WA0011.jpg&quot; title=&quot;Suvichar xking360&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;10. &quot;एक हजार मील की यात्रा एक कदम से शुरू होती है।&quot;  - लाओ त्सू&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;Subscribers our newsletter for more do line suvichar, quotes, thoughts in hindi&amp;nbsp;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/5876743209052202515/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/05/suvichar-in-hindi.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/5876743209052202515'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/5876743209052202515'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/05/suvichar-in-hindi.html' title='दो लाइन का सुविचार - suvichar in hindi '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZJ9UOWsqhdPV0Vg8Q0Tbe2HFAjBVuAdJjquWIm27xqjctM8WF5lagJgOApl2jjmpSWhpnGznQxNSj6NRnEL-C8BphfjwI8vFp08q7cnIpVuON0M0q3iN2qTIuNeUifWEsxzcDD21bd1sv7d2KUaUJuPr1ww4SZVo8s6_tU42LvyaaiicisHdcLsIp3g/s72-w320-h180-c/IMG-20230531-WA0002.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-6469725321618105472</id><published>2023-05-29T15:30:00.000+05:30</published><updated>2023-05-29T15:30:08.333+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="10th Board certification exam result year 2023"/><category scheme="http://www.blogger.com/atom/ns#" term="Video Games"/><title type='text'>आ गया है फिर पबजी बैटल ग्राउंड मोबाईल इंडिया </title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;आ गया है फिर पबजी बैटल ग्राउंड मोबाईल इंडिया&amp;nbsp;&lt;/h1&gt;&lt;h3 style=&quot;text-align: left;&quot;&gt;&amp;nbsp;Pubg - Battle ground mobile India : (पबजी) बैटल ग्राउंड मोबाईल  एक ऐसा मोबाइल गेम बना जिसमे एक्शन गेम्स में भारत के साथ साथ दूसरे देशों में भी बोहोत तरक्की करी ।&lt;/h3&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpMH8eV95w5uSj1fgfiWSQji3JPXVOh_WjGWy-159FgkzgwGEd2xsip-a-FB20O5qJITxNG94zb7UlJW9sxC_KT9pXxGTfo4pxv251AliG-308YEXZGsGV3vHCOwUdX8AJS8B-SFqGLmJmvyfb9GmL71E-qolu5hFWwU1b0WmNcHHNF93Gxb_Xvi97CA/s720/Picsart_23-05-29_11-14-20-217.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Pubg&quot; border=&quot;0&quot; data-original-height=&quot;538&quot; data-original-width=&quot;720&quot; height=&quot;239&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpMH8eV95w5uSj1fgfiWSQji3JPXVOh_WjGWy-159FgkzgwGEd2xsip-a-FB20O5qJITxNG94zb7UlJW9sxC_KT9pXxGTfo4pxv251AliG-308YEXZGsGV3vHCOwUdX8AJS8B-SFqGLmJmvyfb9GmL71E-qolu5hFWwU1b0WmNcHHNF93Gxb_Xvi97CA/w320-h239/Picsart_23-05-29_11-14-20-217.jpg&quot; title=&quot;Pubg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;चाइनीज ऐप्स बैन हो जाने के कारण भारत में बैटल ग्राउंड मोबाईल पूरी तरह बैन हो गया लेकिन कंपनी क्राफ्टों ने अपने नुकसान को रोकने के लिए पुनः भारत में बैटल ग्राउंड मोबाईल इंडिया नाम से गेम को लॉन्च किया ।&lt;br /&gt;&lt;a href=&quot;https://xking360.blogspot.com/2023/02/blog-post_78.html&quot; target=&quot;_blank&quot;&gt;गर्मियों में रहना है स्वस्थ तो...&lt;br /&gt;&lt;/a&gt;कुछ समय पश्चात पुनः गेम में चाइनीज कंपनी के पाए जाने से गेम को पूरी तरह बैन कर दिया गया।&amp;nbsp;&lt;br /&gt;इसी के साथ साथ कंपनी ने एक और गेम निजात किया जो हुबहू पब्जी जैसी ही था जिसका नाम रखा गया पबजी न्यू स्टेट । जो  अभी भी भारत में बैन नही हुआ लेकिन यह वर्जन गेमर्स को बोहोत काम भाया।&amp;nbsp;&amp;nbsp;&lt;br /&gt;&lt;a href=&quot;https://xking360.blogspot.com/2023/05/stock-market.html&quot; target=&quot;_blank&quot;&gt;शेयर मार्केट का यह तरीका बना देगा अमीर&lt;br /&gt;&lt;/a&gt;इसी नुकसान को मद्दे नज़र रखते हुए गेमिंग कंपनी ने इस बार २०२३ में हाल ही मैं कुछ दिनों पहले पुनः( पबजी ) बैटल ग्राउंड मोबाईल इंडिया लांच किया अब आप प्ले स्टोर और ऐप स्टोर से आसानी से इसे अपने फोन में इंस्टॉल कर गेम का पुराना आनंद उठा सकते हैं।&amp;nbsp;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/6469725321618105472/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/05/blog-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/6469725321618105472'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/6469725321618105472'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/05/blog-post.html' title='आ गया है फिर पबजी बैटल ग्राउंड मोबाईल इंडिया '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpMH8eV95w5uSj1fgfiWSQji3JPXVOh_WjGWy-159FgkzgwGEd2xsip-a-FB20O5qJITxNG94zb7UlJW9sxC_KT9pXxGTfo4pxv251AliG-308YEXZGsGV3vHCOwUdX8AJS8B-SFqGLmJmvyfb9GmL71E-qolu5hFWwU1b0WmNcHHNF93Gxb_Xvi97CA/s72-w320-h239-c/Picsart_23-05-29_11-14-20-217.jpg" height="72" width="72"/><thr:total>0</thr:total><georss:featurename>India</georss:featurename><georss:point>20.593684 78.96288</georss:point><georss:box>-7.7165498361788458 43.80663 48.903917836178849 114.11913</georss:box></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-7828296313871297480</id><published>2023-05-28T10:04:00.003+05:30</published><updated>2023-05-28T10:04:30.893+05:30</updated><title type='text'>What is AI and how its work </title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;What is AI and how its work&amp;nbsp;&lt;/h1&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK38EJN7wI3doL_RVk2FUMWQv7c9ldf3IwEuzMlzI8lqljMJ7n2yohnlFUELuCdA1ziCOe370kCATvDR8vZQ2YRXAH4QZVs_3XgNpe_z__fEBD5nZOK90EaudiaikThzcdZLqf5YLu-gNg5tNG7AR9ePbmMzrJFsuMhQRDHUbGxUubXPkCVHXo3vWPhg/s2828/Picsart_23-05-28_10-02-51-725.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Ai&quot; border=&quot;0&quot; data-original-height=&quot;1885&quot; data-original-width=&quot;2828&quot; height=&quot;213&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK38EJN7wI3doL_RVk2FUMWQv7c9ldf3IwEuzMlzI8lqljMJ7n2yohnlFUELuCdA1ziCOe370kCATvDR8vZQ2YRXAH4QZVs_3XgNpe_z__fEBD5nZOK90EaudiaikThzcdZLqf5YLu-gNg5tNG7AR9ePbmMzrJFsuMhQRDHUbGxUubXPkCVHXo3vWPhg/w320-h213/Picsart_23-05-28_10-02-51-725.jpg&quot; title=&quot;Ai&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;AI, short for Artificial Intelligence, is a branch of computer science that focuses on creating intelligent machines capable of performing tasks that typically require human intelligence. These tasks include understanding natural language, recognizing images, learning from data, making decisions, and solving complex problems.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;At its core, AI works by utilizing algorithms and computational models inspired by the human brain&#39;s neural networks. These models enable machines to process vast amounts of data, identify patterns, and learn from experience. Here are some key components of AI and how they work:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1. Machine Learning (ML): Machine learning is a subset of AI that deals with designing algorithms that can learn and make predictions or decisions based on data. ML algorithms are trained using large datasets, allowing them to recognize patterns and relationships within the data. They can then apply this knowledge to make predictions or classify new data accurately.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2. Deep Learning: Deep learning is a subfield of machine learning that focuses on artificial neural networks, which are inspired by the human brain&#39;s structure. Deep learning models, known as deep neural networks, are capable of learning hierarchies of representations from raw data. By processing data through multiple layers of interconnected nodes (neurons), these networks can extract intricate features and patterns, leading to highly accurate predictions and classifications.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;3. Natural Language Processing (NLP): NLP enables computers to understand and generate human language. It involves tasks such as speech recognition, language translation, sentiment analysis, and text summarization. NLP algorithms analyze and interpret text or speech data, enabling machines to comprehend, respond, and generate human-like language.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;4. Computer Vision: Computer vision focuses on giving machines the ability to understand and interpret visual data, such as images and videos. By leveraging techniques like image recognition, object detection, and image segmentation, computer vision algorithms can identify objects, analyze scenes, and extract meaningful information from visual inputs.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;5. Reinforcement Learning: Reinforcement learning involves training algorithms through interactions with an environment. The algorithm learns by receiving feedback in the form of rewards or penalties for its actions. By exploring different actions and observing the consequences, the algorithm gradually learns to make optimal decisions to maximize its rewards.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Thank for reading.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/7828296313871297480/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/05/what-is-ai-and-how-its-work.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/7828296313871297480'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/7828296313871297480'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/05/what-is-ai-and-how-its-work.html' title='What is AI and how its work '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK38EJN7wI3doL_RVk2FUMWQv7c9ldf3IwEuzMlzI8lqljMJ7n2yohnlFUELuCdA1ziCOe370kCATvDR8vZQ2YRXAH4QZVs_3XgNpe_z__fEBD5nZOK90EaudiaikThzcdZLqf5YLu-gNg5tNG7AR9ePbmMzrJFsuMhQRDHUbGxUubXPkCVHXo3vWPhg/s72-w320-h213-c/Picsart_23-05-28_10-02-51-725.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-5838173729574109731</id><published>2023-05-28T09:50:00.003+05:30</published><updated>2023-05-28T09:50:39.827+05:30</updated><title type='text'>Parliament of India Narendra Modi  Lok Sabha Chenkol</title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;FIRST LOOK OF PARLIAMENT OF INDIA BULDING&lt;/h1&gt;&lt;div&gt;NARENDRA MODI DEDICATED TO CREAT NEW INDIA&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;HERE IS SOME PHOTOS OF NEW LOOK&amp;nbsp;&lt;/div&gt;&lt;div&gt;NEW PARLIAMENT OF INDIA&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6GgEqAS85yBAcUcycU2bI6gDnMblI69bmG7V6K4AkbcLONlwML9Cn93STe1VYmPBap0bSaSEV6I989oIiDQ8kl8v8MYDZjU6rYX_0Gz1klNE6yx4bqkJhdk-be2Cr0TKbEYCqEnCMVFAXjehUg0lrvwGwHKtqgExHRhzfAUFiRTUYjzGS6pnmz7kybw/s1257/Picsart_23-05-28_09-46-18-792.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1257&quot; height=&quot;183&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6GgEqAS85yBAcUcycU2bI6gDnMblI69bmG7V6K4AkbcLONlwML9Cn93STe1VYmPBap0bSaSEV6I989oIiDQ8kl8v8MYDZjU6rYX_0Gz1klNE6yx4bqkJhdk-be2Cr0TKbEYCqEnCMVFAXjehUg0lrvwGwHKtqgExHRhzfAUFiRTUYjzGS6pnmz7kybw/s320/Picsart_23-05-28_09-46-18-792.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuJu8i5XyXSajWlv8OymJ4AJdQ9toIyL2WjEDsgnfQ2rAUJYtUrgvYr5LqQW61FsO-4nMzamW1IwEPjwSHYjdCwUhvwtV93wvLfVPbbLwEjNjWGr3_Ctj0Y5B6Shn79fBNbUnlzz28TbmKo-T1ByogIU2kuF1ieNwepWVpDTREIUy6ysFC35OhC_Uxyw/s1272/Picsart_23-05-28_09-45-26-191.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1272&quot; height=&quot;181&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuJu8i5XyXSajWlv8OymJ4AJdQ9toIyL2WjEDsgnfQ2rAUJYtUrgvYr5LqQW61FsO-4nMzamW1IwEPjwSHYjdCwUhvwtV93wvLfVPbbLwEjNjWGr3_Ctj0Y5B6Shn79fBNbUnlzz28TbmKo-T1ByogIU2kuF1ieNwepWVpDTREIUy6ysFC35OhC_Uxyw/s320/Picsart_23-05-28_09-45-26-191.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgXn1CV06mKVS7X6r4bJtFJB2_uDcVe8VTyzyMoKNYV0-ej3sJobDV9BOCRljz2R31V785VLmyLma9Z0psaVyKgX7vmOIvc6gbrYANuF1vGon7hQ-USAnP1zktIEAlLx-S_4YxaDu2x-ZeF6jaXw4ydkUETfGPmVNJCCX0nBzpzH8xLVeVM-4R32P7q0g/s1270/Picsart_23-05-28_09-44-26-587.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1270&quot; height=&quot;181&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgXn1CV06mKVS7X6r4bJtFJB2_uDcVe8VTyzyMoKNYV0-ej3sJobDV9BOCRljz2R31V785VLmyLma9Z0psaVyKgX7vmOIvc6gbrYANuF1vGon7hQ-USAnP1zktIEAlLx-S_4YxaDu2x-ZeF6jaXw4ydkUETfGPmVNJCCX0nBzpzH8xLVeVM-4R32P7q0g/s320/Picsart_23-05-28_09-44-26-587.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-lyVJoeCl8yosjjO3ewNmF5L0k04N3GBKYx_epgbyyxsO7xZI3uX5_4CTUg4EA0Id_4o1xqP-khK4gTdBe4bnuxGtdFcFV638DBI8UW7kFbtw-LeqMscbJ_NNBAWPDSiioJAiBa53EjWvqxDu2dYiVXel20kI1iDq6yfVII0conE5bmep_NNOipJy8g/s1335/Picsart_23-05-28_09-43-23-993.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1335&quot; height=&quot;173&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-lyVJoeCl8yosjjO3ewNmF5L0k04N3GBKYx_epgbyyxsO7xZI3uX5_4CTUg4EA0Id_4o1xqP-khK4gTdBe4bnuxGtdFcFV638DBI8UW7kFbtw-LeqMscbJ_NNBAWPDSiioJAiBa53EjWvqxDu2dYiVXel20kI1iDq6yfVII0conE5bmep_NNOipJy8g/s320/Picsart_23-05-28_09-43-23-993.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4G0yLtPw7iNYJl6ZNDzoHOu27uMLukKE5q9reVbHq7F5u8PGRzm17NGMjhYd7EclhfOLEiILpcCELJLDUj-sWGuKE1kTymrwQk7mi3cqQHHbUxw1XiCLCDrMWJaSPwTE0FuQteqX5ifmjheaCOtzubAlD5O4PuyDOEi4k3E6uZ5pAL5Y6V3jFNT1HeQ/s1324/Picsart_23-05-28_09-41-38-677.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;720&quot; data-original-width=&quot;1324&quot; height=&quot;174&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4G0yLtPw7iNYJl6ZNDzoHOu27uMLukKE5q9reVbHq7F5u8PGRzm17NGMjhYd7EclhfOLEiILpcCELJLDUj-sWGuKE1kTymrwQk7mi3cqQHHbUxw1XiCLCDrMWJaSPwTE0FuQteqX5ifmjheaCOtzubAlD5O4PuyDOEi4k3E6uZ5pAL5Y6V3jFNT1HeQ/s320/Picsart_23-05-28_09-41-38-677.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/5838173729574109731/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/05/parliament-of-india-narendra-modi-lok.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/5838173729574109731'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/5838173729574109731'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/05/parliament-of-india-narendra-modi-lok.html' title='Parliament of India Narendra Modi  Lok Sabha Chenkol'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6GgEqAS85yBAcUcycU2bI6gDnMblI69bmG7V6K4AkbcLONlwML9Cn93STe1VYmPBap0bSaSEV6I989oIiDQ8kl8v8MYDZjU6rYX_0Gz1klNE6yx4bqkJhdk-be2Cr0TKbEYCqEnCMVFAXjehUg0lrvwGwHKtqgExHRhzfAUFiRTUYjzGS6pnmz7kybw/s72-c/Picsart_23-05-28_09-46-18-792.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-403142930857554976</id><published>2023-05-27T21:42:00.005+05:30</published><updated>2023-05-27T21:42:48.008+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="How to become IAS?"/><title type='text'>IAS kaise bane? </title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;IAS kaise bane?&amp;nbsp;&lt;/h1&gt;&lt;p&gt;How to become IAS&amp;nbsp;&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj74NZ29I-2f44u1_VME2WVhrDv50ql4qvpIkX3oN34zFhpXkguRNBWCuh33blasr_EGVl1QprCO4szUBLD4vMOnIsLdAAxf5lnclIWU3xNVd9nKwFuBDPNngQMgQ07LQHfgWT61QwVPuYlTZIdRlNqNhNIdDlv8u1afXG9nKHZY2dewotxHsKowhjRKg/s2828/Picsart_23-05-27_21-39-00-635.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;IAS kaise bane&quot; border=&quot;0&quot; data-original-height=&quot;1885&quot; data-original-width=&quot;2828&quot; height=&quot;213&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj74NZ29I-2f44u1_VME2WVhrDv50ql4qvpIkX3oN34zFhpXkguRNBWCuh33blasr_EGVl1QprCO4szUBLD4vMOnIsLdAAxf5lnclIWU3xNVd9nKwFuBDPNngQMgQ07LQHfgWT61QwVPuYlTZIdRlNqNhNIdDlv8u1afXG9nKHZY2dewotxHsKowhjRKg/w320-h213/Picsart_23-05-27_21-39-00-635.jpg&quot; title=&quot;IAS&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;IAS (Indian Administrative Service) is a highly competitive and prestigious civil service in India. If you&#39;re interested in becoming an IAS officer, here are the general steps to follow:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;1. Eligibility Criteria: Ensure that you meet the eligibility criteria set by the Union Public Service Commission (UPSC). Generally, candidates must hold a bachelor&#39;s degree in any discipline from a recognized university. The age limit and number of attempts allowed may vary depending on the category you belong to.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;2. Understand the Exam Pattern: The UPSC conducts the Civil Services Examination (CSE) to select candidates for various civil services, including IAS. Familiarize yourself with the exam pattern, which consists of three stages: the Preliminary Examination (Objective), the Main Examination (Descriptive), and the Personality Test (Interview).&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;
  &lt;script async src=&quot;https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7695454629132041&quot;
          crossorigin=&quot;anonymous&quot;&gt;&lt;/script&gt;3. Prepare for the Preliminary Examination: The Preliminary Examination tests your general awareness and aptitude. It comprises two papers: General Studies (GS) and Civil Services Aptitude Test (CSAT). Prepare by studying topics such as current affairs, Indian polity, history, geography, economics, and logical reasoning.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;4. Prepare for the Main Examination: The Main Examination assesses your comprehensive understanding of various subjects. It includes nine papers, including one optional subject chosen from a list provided by the UPSC. Additionally, there are four General Studies papers, an essay paper, and two language papers (English and a regional language).&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;5. Optional Subject Selection: Choose your optional subject wisely based on your interests, background, and scoring potential. Refer to the UPSC syllabus and consult with seniors, experts, or coaching institutes to make an informed decision.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;6. Develop a Study Plan: Devote dedicated time for self-study and revision. Create a study plan that covers all subjects and allows you to complete the syllabus within a specified timeframe. Refer to standard textbooks, current affairs magazines, newspapers, and online resources for comprehensive preparation.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;7. Practice Answer Writing: Develop your writing skills by practicing answer writing for the Main Examination. Work on structuring your answers, expressing ideas coherently, and incorporating relevant facts and examples.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;
    &lt;script async src=&quot;https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7695454629132041&quot;
     crossorigin=&quot;anonymous&quot;&gt;&lt;/script&gt;
&lt;ins class=&quot;adsbygoogle&quot;
     style=&quot;display:block; text-align:center;&quot;
     data-ad-layout=&quot;in-article&quot;
     data-ad-format=&quot;fluid&quot;
     data-ad-client=&quot;ca-pub-7695454629132041&quot;
     data-ad-slot=&quot;9785941123&quot;&gt;&lt;/ins&gt;
&lt;script&gt;
     (adsbygoogle = window.adsbygoogle || []).push({});
    &lt;/script&gt;
    8. Stay Updated with Current Affairs: Stay abreast of national and international current affairs. Read newspapers, follow reliable news sources, and refer to current affairs magazines to stay updated.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;9. Mock Tests and Revision: Take regular mock tests to evaluate your preparation and identify areas that need improvement. Also, revise the entire syllabus multiple times to reinforce your understanding and retention of key concepts.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;10. Personality Test (Interview): If you qualify the Main Examination, you will be called for a Personality Test, which assesses your personality traits, communication skills, and general awareness. Stay confident, be well-prepared with your Detailed Application Form (DAF), and express your views honestly.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;It&#39;s important to note that the journey to becoming an IAS officer requires consistent hard work, dedication, and perseverance. Consider seeking guidance from coaching institutes or mentors who can provide valuable insights and support throughout your preparation.&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/403142930857554976/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/05/ias-kaise-bane.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/403142930857554976'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/403142930857554976'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/05/ias-kaise-bane.html' title='IAS kaise bane? '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj74NZ29I-2f44u1_VME2WVhrDv50ql4qvpIkX3oN34zFhpXkguRNBWCuh33blasr_EGVl1QprCO4szUBLD4vMOnIsLdAAxf5lnclIWU3xNVd9nKwFuBDPNngQMgQ07LQHfgWT61QwVPuYlTZIdRlNqNhNIdDlv8u1afXG9nKHZY2dewotxHsKowhjRKg/s72-w320-h213-c/Picsart_23-05-27_21-39-00-635.jpg" height="72" width="72"/><thr:total>0</thr:total><georss:featurename>India</georss:featurename><georss:point>20.593684 78.96288</georss:point><georss:box>-7.7165498361788458 43.80663 48.903917836178849 114.11913</georss:box></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-6501228238348984875</id><published>2023-05-26T11:23:00.003+05:30</published><updated>2023-05-26T11:23:32.846+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fubar 2023 webseries review"/><title type='text'>Fubar 2023 webseries review </title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;FUBAR 2023 अर्नोल्ड अभिनीत वेबसीरीज: एक मजेदार और मनोरंजक सवारी&lt;/h1&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKCqdA0j0yNHeQF3mVdhAh8rm3UNzte2NZNB9Iqqq6LC5Omb81pMVre6YT-hBfo6GknUJ8pekEgisxFbUpcSggW6DAaaiFwj7l07QqholgYAb3i-HrROCYVkkUqbMUtWi_wUwcq1pFcMpexGHGT5VvrapQT6e8xaRNgRi1Y67c5YRROw-fZxm8tVUovA/s1440/schwarzenegger-20230526-0001.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Fubar&quot; border=&quot;0&quot; data-original-height=&quot;758&quot; data-original-width=&quot;1440&quot; height=&quot;213&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKCqdA0j0yNHeQF3mVdhAh8rm3UNzte2NZNB9Iqqq6LC5Omb81pMVre6YT-hBfo6GknUJ8pekEgisxFbUpcSggW6DAaaiFwj7l07QqholgYAb3i-HrROCYVkkUqbMUtWi_wUwcq1pFcMpexGHGT5VvrapQT6e8xaRNgRi1Y67c5YRROw-fZxm8tVUovA/w406-h213/schwarzenegger-20230526-0001.jpg&quot; title=&quot;Fubar 2023&quot; width=&quot;406&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;
  &lt;script async src=&quot;https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7695454629132041&quot;
          crossorigin=&quot;anonymous&quot;&gt;&lt;/script&gt;
  परिचय:&lt;/p&gt;&lt;p&gt;&amp;nbsp;एक मजेदार और मनोरंजक सवारी के लिए तैयार हो जाइए क्योंकि हम FUBAR 2023 की दुनिया में गोता लगाते हैं, जो कि प्रसिद्ध अर्नोल्ड श्वार्ज़नेगर अभिनीत एक वेबसीरीज़ है।  इस लेख में, हम उन रोमांचक तत्वों का पता लगाएंगे जो FUBAR 2023 को उसके प्रफुल्लित करने वाले पलों से लेकर अर्नोल्ड के करिश्माई प्रदर्शन तक देखने योग्य बनाते हैं।  तो, चलिए सीधे इसमें कूदते हैं और इस वेबसीरीज की पेशकश की जाने वाली खुशी की खोज करते हैं!&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;FUBAR 2023: एक हल्की-फुल्की कॉमेडी:&lt;/p&gt;&lt;p&gt;&amp;nbsp;फ़ुबर 2023 एक हल्की-फुल्की कॉमेडी है जो आपके चेहरे पर मुस्कान लाती है।  अपने सरल और प्रासंगिक हास्य के साथ, श्रृंखला दैनिक पीसने से एक ताज़ा पलायन प्रदान करती है।  यह मज़ेदार पलों से भरा हुआ है जो आपको ज़ोर से हँसाएगा, यह उन लोगों के लिए एक आदर्श विकल्प है जो एक हल्के दिल और आनंददायक घड़ी की तलाश में हैं।&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi09SNj2_hP4WsRl9gAB4zVfFqEABF9aYL3tA2Oi-PgM16NNhGOG443Biig6_03ghquH8ejcTRc0yQwKL0wWd7Fvh2OZRcBUoVWmKXYIWlNVzWPLupFBC4q3yaQ77tTmVLfN5kOrjnq4ZZaZpnMLuSheKQhqr4KoojN1v3pFQvccODU_gGSIAOcq25W7g/s1440/schwarzenegger-20230526-0002.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Fubar&quot; border=&quot;0&quot; data-original-height=&quot;758&quot; data-original-width=&quot;1440&quot; height=&quot;168&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi09SNj2_hP4WsRl9gAB4zVfFqEABF9aYL3tA2Oi-PgM16NNhGOG443Biig6_03ghquH8ejcTRc0yQwKL0wWd7Fvh2OZRcBUoVWmKXYIWlNVzWPLupFBC4q3yaQ77tTmVLfN5kOrjnq4ZZaZpnMLuSheKQhqr4KoojN1v3pFQvccODU_gGSIAOcq25W7g/w320-h168/schwarzenegger-20230526-0002.jpg&quot; title=&quot;Arnold fubar&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;अर्नोल्ड की करिश्माई उपस्थिति:&lt;/p&gt;&lt;p&gt;&amp;nbsp;अर्नोल्ड श्वार्जनेगर की करिश्माई उपस्थिति FUBAR 2023 में चमकती है। वह अपने विशिष्ट आकर्षण और बुद्धि को स्क्रीन पर लाता है, दर्शकों को अपने जीवन से बड़े व्यक्तित्व के साथ मोहित करता है।  अर्नोल्ड का हास्य समय सही है, प्रफुल्लित करने वाली पंक्तियाँ प्रदान करता है और श्रृंखला में मनोरंजन की एक अतिरिक्त परत जोड़ता है।  उनकी उपस्थिति एक विशेष आकर्षण जोड़ती है कि उनके काम के प्रशंसक निस्संदेह सराहेंगे।&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;आकर्षक कहानी:&lt;/p&gt;&lt;p&gt;&amp;nbsp;FUBAR 2023 एक आकर्षक कहानी प्रस्तुत करता है जो आपको एपिसोड से एपिसोड तक जोड़े रखता है।  यह हास्य और कभी-कभी अपमानजनक स्थितियों को नेविगेट करने वाले दोस्तों के समूह के इर्द-गिर्द घूमता है।  यह सीरीज कॉमेडी और दिल को छू लेने वाले पलों के बीच एक संतुलन बनाती है, एक संपूर्ण कथा का निर्माण करती है जो दर्शकों को बांधे रखती है।  आप खुद को कहानी में अगले मोड़ का बेसब्री से इंतजार करते हुए पाएंगे।&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;डायनामिक सपोर्टिंग कास्ट:&lt;/p&gt;&lt;p&gt;&amp;nbsp;अर्नोल्ड के साथ, वेबसीरीज में एक गतिशील सहायक कलाकार है जो शो में अपनी अनूठी प्रतिभा लाता है।  अर्नोल्ड के साथ उनकी केमिस्ट्री और उनकी हास्य प्रतिभा श्रृंखला में गहराई जोड़ती है, यादगार बातचीत और प्रफुल्लित करने वाले दृश्य बनाती है।  प्रत्येक पात्र तालिका में कुछ अलग लाता है, जो FUBAR 2023 के समग्र आनंद में योगदान देता है।&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQAwSBqhRaiCoko6SLn-ByHuO9jsyT8oZlEUG6FxarXHsUnVEpM1IdlS9BnQYVz76d4TwIDt6rtm-IPL3SQ3aSj8zLuPUNn7G7-gN0O38yQ_ogUer3etoO94JuFtY9TUltUTwXY4bMj2kU52Q6as1nJkmER81U6crhPAnK5bjPNmArY-z-sa0xPLQAIA/s1440/schwarzenegger-20230526-0003.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;758&quot; data-original-width=&quot;1440&quot; height=&quot;168&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQAwSBqhRaiCoko6SLn-ByHuO9jsyT8oZlEUG6FxarXHsUnVEpM1IdlS9BnQYVz76d4TwIDt6rtm-IPL3SQ3aSj8zLuPUNn7G7-gN0O38yQ_ogUer3etoO94JuFtY9TUltUTwXY4bMj2kU52Q6as1nJkmER81U6crhPAnK5bjPNmArY-z-sa0xPLQAIA/s320/schwarzenegger-20230526-0003.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;ताज़ा हवा का झोंका:&lt;/p&gt;&lt;p&gt;&amp;nbsp;FUBAR 2023 वेबसीरीज की दुनिया में ताजी हवा की सांस देता है।  यह सादगी को अपनाता है और शुद्ध मनोरंजन देने पर ध्यान केंद्रित करता है।  सरल कथानक और सुलभ हास्य इसे एक ऐसी श्रृंखला बनाते हैं जिसका कोई भी आनंद ले सकता है।  यह उन लोगों के लिए एक सही विकल्प है जो जटिल कथानकों में फंसे बिना आराम करना चाहते हैं और एक अच्छी हंसी चाहते हैं।&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwCQwciYTFkuC9mnuUOv3qfFa26hPhdAVjo53aFdF29o2qu-wNsuXY5lyYMd_kgiDj9muyp547ILoyCTsvcEclQ3i-BzRp4lO-meZozb4PI-H7kS7Ck7XNXcYzi7B-l0qsTZYD_W5w-1K-9k6i470cuaH36lPR_RL0URIIHMkI90gB-b60U2Eb3mRXhQ/s1279/monicabarbaro-20230526-0001.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1279&quot; data-original-width=&quot;1023&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwCQwciYTFkuC9mnuUOv3qfFa26hPhdAVjo53aFdF29o2qu-wNsuXY5lyYMd_kgiDj9muyp547ILoyCTsvcEclQ3i-BzRp4lO-meZozb4PI-H7kS7Ck7XNXcYzi7B-l0qsTZYD_W5w-1K-9k6i470cuaH36lPR_RL0URIIHMkI90gB-b60U2Eb3mRXhQ/s320/monicabarbaro-20230526-0001.jpg&quot; width=&quot;256&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;FUBAR 2023, अर्नोल्ड श्वार्जनेगर अभिनीत, एक मजेदार और मनोरंजक वेबसीरीज है जो आपके चेहरे पर मुस्कान छोड़ देगी।  अपनी हल्की-फुल्की कॉमेडी, अर्नोल्ड की करिश्माई उपस्थिति, आकर्षक कहानी, गतिशील सहायक कलाकारों और ताज़ा सादगी के साथ, FUBAR 2023 देखने का आनंददायक अनुभव प्रदान करता है।  तो वापस बैठें, आराम करें, और हँसी और आनंद से भरी इस मनोरंजक सवारी का आनंद लेने के लिए तैयार हो जाएँ!&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/6501228238348984875/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/05/fubar-2023-webseries-review.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/6501228238348984875'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/6501228238348984875'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/05/fubar-2023-webseries-review.html' title='Fubar 2023 webseries review '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKCqdA0j0yNHeQF3mVdhAh8rm3UNzte2NZNB9Iqqq6LC5Omb81pMVre6YT-hBfo6GknUJ8pekEgisxFbUpcSggW6DAaaiFwj7l07QqholgYAb3i-HrROCYVkkUqbMUtWi_wUwcq1pFcMpexGHGT5VvrapQT6e8xaRNgRi1Y67c5YRROw-fZxm8tVUovA/s72-w406-h213-c/schwarzenegger-20230526-0001.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-1260172941032336387</id><published>2023-05-25T13:27:00.001+05:30</published><updated>2023-05-25T13:27:09.513+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="10th Board certification exam result year 2023"/><title type='text'>10th board certification exam result year 2023 out now </title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;&amp;nbsp;10th board certification exam result year 2023 out now&lt;/h1&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Go check your 10th board certification exam (hsc) result 2023&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Visit official website - &lt;a href=&quot;http://www.mpresults.nic.in/mpbse/hsc10_2023/X_class_23.htm&quot; target=&quot;_blank&quot;&gt;Mpresults&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/1260172941032336387/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/05/10th-board-certification-exam-result.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/1260172941032336387'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/1260172941032336387'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/05/10th-board-certification-exam-result.html' title='10th board certification exam result year 2023 out now '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-2719764933722923548</id><published>2023-05-25T11:17:00.002+05:30</published><updated>2023-05-25T14:21:03.311+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Stock Market"/><title type='text'>अंबानी बन जाओगे जानो stock Market का यह राज.....</title><content type='html'>&lt;h1 style=&quot;text-align: left;&quot;&gt;अंबानी बन जाओगे जानो stock Market का यह राज.....&lt;/h1&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJ3-0pxJAaUzm8iFK9GJuTfJThckfvgjKX47bVtYTLpOECrrRz86L3EYlZyqzLv0H27OHgqT6OaRXSp7sMt-4_TWfcz--EjwWqJdJEC31PHyn6CpgLX3ifJpoudw4nvAdd8CvCaOWU-Mk3yYLUep_FbKO65OC4Q28f7It6arrtrAbRrlkRt1cZWOhrWA/s2828/Picsart_23-05-25_11-08-22-937.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;1885&quot; data-original-width=&quot;2828&quot; height=&quot;213&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJ3-0pxJAaUzm8iFK9GJuTfJThckfvgjKX47bVtYTLpOECrrRz86L3EYlZyqzLv0H27OHgqT6OaRXSp7sMt-4_TWfcz--EjwWqJdJEC31PHyn6CpgLX3ifJpoudw4nvAdd8CvCaOWU-Mk3yYLUep_FbKO65OC4Q28f7It6arrtrAbRrlkRt1cZWOhrWA/s320/Picsart_23-05-25_11-08-22-937.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;सभी को नमस्कार।  मेरा नाम अरुण जाट है।&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp;मैं अपने दर्शकों के लिए ऑप्शन ग्रीक्स पर एक वीडियो बनाने के लिए बैठा।  जिसकी लंबे समय से मांग की जा रही थी।  एक वीडियो बनाते समय मेरे मन में एक शंका हुई कि उनमें से बहुतों को मूल बातें भी नहीं पता हैं।&lt;/div&gt;&lt;div&gt;कौन सब देख रहे होंगे । यह ब्लॉग ऑप्शंस ट्रेडिंग की मूल बातें समझने के लिए है।  जिनके बेसिक्स क्लियर होते हैं।  उन्हें एडवांस जाने की भी जरूरत नहीं है।  हालांकि, एक अग्रिम जानने के लिए।  निश्चित रूप से, पहले मूल बातें जानना आवश्यक है।  तो हमारे पास हमारे विकल्प व्यापार हैं, यह कैसे किया जाता है।  एक option chain क्या है?  मैंने एक ब्लॉग लिखा।  यह एक उन्नत अवधारणा थी।  आज, मैं बिल्कुल बुनियादी बातों से शुरुआत करूँगा।  Options के बारे में, option ख़रीदना भी मैं समझाऊंगा।  Option buying क्या है?  यह कहाँ किया जाता है?  जोखिम का प्रबंधन कैसे किया जा रहा है?  कितना पैसा कमाया जा सकता है?  मैं आपको ऑप्शन सेलिंग के बारे में भी समझाऊंगा।  Option selling क्या है?  विकल्प लेखन क्या है?  लोग ऑप्शन राइटिंग क्यों करते हैं?  आप इसे क्यों नहीं करते?  क्या आपको इसे करने की आवश्यकता है?  हेजिंग क्या है?  Options की मूल बातों पर जाएंगे।  हम बुनियादी बातों को समझने की कोशिश करेंगे।  बेसिक्स के बाद, हम ऑप्शन ग्रीक्स पर एक ब्लॉग बनाएंगे।  हम option के एक अच्छे/ब्रह्मांड को कवर करेंगे।  चलिए शुरू करते हैं।&lt;script async src=&quot;https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7695454629132041&quot;
     crossorigin=&quot;anonymous&quot;&gt;&lt;/script&gt;
&lt;ins class=&quot;adsbygoogle&quot;
     style=&quot;display:block; text-align:center;&quot;
     data-ad-layout=&quot;in-article&quot;
     data-ad-format=&quot;fluid&quot;
     data-ad-client=&quot;ca-pub-7695454629132041&quot;
     data-ad-slot=&quot;9785941123&quot;&gt;&lt;/ins&gt;
&lt;script&gt;
     (adsbygoogle = window.adsbygoogle || []).push({});
  &lt;/script&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; सबसे पहले, options .&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp;मैं आपको बहुत ही मूल बातों से समझाऊंगा।   पहले मैं आपको दिखाऊंगा कि ऑप्शन कैसा दिखता है।  यह हमारा ज़ेरोधा इंटरफ़ेस है।  ज़ेरोधा इंटरफ़ेस को सबसे सरल इंटरफ़ेस माना जाता है।  लोग आप अपस्टॉक्स/ज़ेरोधा।  मूल रूप से इन सभी का उपयोग किया जाता है।  कुल मिलाकर, चाहे आप एंजेल ब्रोकिंग का इस्तेमाल करें या एम स्टॉक का या किसी भी चीज का इस्तेमाल करें।  आपको प्रत्येक में एक वॉचलिस्ट मिल जाएगी।  आपको क्या करना है, जैसे निफ्टी 18,500 के आसपास है।  आपको अपने दिमाग का ज्यादा इस्तेमाल करने की जरूरत नहीं है।  आगे केवल यही संख्या लिखनी है।  मैं क्या दिखा रहा हूँ?  कैसे मिलता है ऑप्शन?  उदाहरण के लिए, यदि आप 18,500 लिखते हैं, तो डिफ़ॉल्ट रूप से आपको अंतिम दिसंबर गुरुवार की समाप्ति मिलेगी।  यह समाप्ति के बारे में है।  समाप्ति का अर्थ है कि उस दिन तक सभी अनुबंध समाप्त हो जाते हैं।  यदि आप बाहर नहीं निकलते हैं तो आप बाहर हो जाएंगे।  यह दिसंबर के महीने की समाप्ति है।  ठीक है, मासिक समाप्ति हो गई है।  और, यह आपकी हाल की समाप्ति है।  15 दिसंबर को गुरुवार होगा।  हर हफ्ते, इंडेक्स में विकल्प समाप्त हो जाते हैं।  फिर, निफ्टी/बैंक निफ्टी/निफ्टी और अन्य स्टॉक मासिक आधार पर समाप्त हो जाते हैं।  तो ऐसा हुआ।  अगर हमें इंट्राडे करना है, तो हमें हमेशा मौजूदा एक्सपायरी चुनने की जरूरत है।  उसमें बहुत अधिक मात्रा में तरलता होती है।  और, यह अच्छी गति लाता है।  यूनानी अलग और तेज़ तरीकों से अच्छा काम करते हैं।  स्विंग ट्रेडिंग करते समय मासिक समाप्ति चुनने की आवश्यकता है।  जिसे आपको 4/5/6 दिनों तक होल्ड करना होगा।  यूनानियों में, एटा नाम की एक ऐसी चीज है, जो अगर आप एक खरीदार हैं, तो नष्ट हो जाएगी।  वहां आपको मंथली एक्सपायरी पर जाने की जरूरत है, ठीक है क्योंकि उनकी एक्सपायरी डेट अभी दूर है।  मान लीजिए, हमें व्यापार करने की आवश्यकता है।  मैंने आपको जो दिखाया है, वह यह है कि विकल्प कैसे खोजें।  उदाहरण के लिए, 18,500 कॉल का एक विकल्प है।  मैंने आपके सामने एनएसई की एक ऑप्शन चेन खोली है।   इस घड़ी के बाद आप इसे समझ सकेंगे।  तो, यह 18,550 के 18,500 पुट और 18550 के पुट की भी कॉल है, इसका मतलब है कि ये सभी स्ट्राइक मूल्य हैं।  इतने सारे स्ट्राइक मूल्य हालांकि, केवल एक निफ़्टी याद रखें।   आपको केवल विश्लेषण पर जाने और ऑप्शन चैन पर क्लिक करने की आवश्यकता है।  अब सेटिंग में आएं, आप किस स्ट्राइक प्राइस पर डेल्टा चेक कर सकते हैं।  कितना।  गामा, थीटा और वेगा भी चेक कर सकते हैं।  ये क्या हैं, हम अगले ब्लॉग में जानेंगे।  रो नाम की कोई चीज होती है।  हम इन सबका अध्ययन करेंगे।  अब हम बुनियादी बातों पर हैं।  आइए बुनियादी बातों से आगे बढ़ते हैं।  शुरुआत करते हैं आज के ब्लॉग से।  आइए आगे बढ़ते हैं।  चलिए शुरू करते हैं।  मूल बातें क्या हैं?  ऑप्शंस ट्रेडिंग कैसे शुरू करें इस ब्लॉग का नाम है, बेसिक्स फॉर बिगिनर्स।  चलिए शुरू करते हैं।  अब आप समझ गए होंगे कि Option क्या होते हैं?  विकल्प क्या हैं?  विकल्प एक तरीका है।  ऑप्शंस निफ्टी की तरह एसेट नहीं है।  विकल्प सोने की तरह नहीं है।  विकल्प एसबीआई/रिलायंस इक्विटी की तरह नहीं है।  यह एक यंत्र है।  यह व्यापार करने का एक तरीका है।  यदि कोई व्यक्ति विकल्प में व्यापार करना चाहता है, तो वे कॉल बाय, पुट शॉर्ट फ्यूचर लॉन्ग द्वारा ऐसा कर सकते हैं।  इसके कई तरीके हैं।  या नकद में खरीद सकते हैं, अगर यह इक्विटी है।  तो व्यापार करने के कई तरीके हैं एक विकल्प क्या है?  एक विधि।  उदाहरण के लिए, आपको फ्लाइट से दिल्ली से बंबई जाना होगा।  यही उपयुक्त होगा।  अगर आपके पास अच्छी खासी रकम है तो फ्लाइट से यात्रा करें, नहीं तो ट्रेन से यात्रा करें।  कुछ अपनी कारों से यात्रा करते हैं।  यह क्या है?  यह फ्लाइट/ट्रेन/कार तीन तरह से हैं।  तो ये Option भी एक प्रकार का तरीका है.  तो, यह एक अच्छा और तेज़ तरीका है।  अगर आप ऑप्शन ट्रेडिंग के बारे में सीखना चाहते हैं तो आपको मूल बातें सीखने की जरूरत है।  बेसिक्स में क्या होता है?  अगर कोई विकल्प है तो पहले हमें &#39;स्ट्राइक प्राइस&#39; को समझने की जरूरत है।  स्ट्राइक प्राइस का मतलब है कि हमें कौन सा स्ट्राइक प्राइस खरीदना है?  आपने अपने हिसाब से थोड़ा बहुत पढ़कर ट्रेडिंग शुरू की है।  आपने देखा कि आपने कॉल किया, मार्केट ऊपर गया तो भी कुछ खास फर्क नहीं निकला।  आपको नुकसान हुआ है।  आपको अपनी उम्मीदों के अनुसार या पहले जितना लाभ था उतना लाभ नहीं मिला है।  या आप बहुत कुछ लाए हैं।  बाजार बहुत नीचे गिर गया, फिर भी आपको न तो लाभ हुआ और न ही नुकसान का सामना करना पड़ा।  कई बार तो पूरा खाता ही उड़ा दिया।  समस्या स्ट्राइक मूल्य चयन है।  तो, किस स्ट्राइक मूल्य का चयन करने की आवश्यकता है।  ठीक है पहले, हमें स्ट्राइक प्राइस के चयन के लिए उस पर आने की जरूरत है, जो कहा गया है।  मूलतः दो शब्द हैं।  इन द मनी या आउट ऑफ द मनी।  अनुभवी भी देखेगा आपका भी नजरिया साफ हो जाएगा।  जाहिर है, जैसा कि आपको भी फायदा होगा लेकिन जो नौसिखिए हैं वे ध्यान से देखें।  विकल्प दो प्रकार के होते हैं।  इन द मनी एंड आउट ऑफ द मनी, ओके।  हम इन्हें समझने जा रहे हैं।  इससे पहले हमें दुनिया के दो तरह के ट्रेडर्स के बारे में जानने की जरूरत है।  सबसे पहले, विकल्प खरीदार के रूप में कहा जाता है जो कि रुपये का है।  100 विकल्प।  जैसा कि आपने देखा है, रु।  100 विकल्प 18,500 की कॉल।  आपको यह रुपये खरीदना चाहिए।  100 विकल्प।  100 ×5 = रु.  5000 आपको मिलेगा।  5000 रुपये के Option CE में आप 18,500/किसी अन्य नंबर पर खरीदेंगे।  इसे हम उदाहरण के तौर पर ले रहे हैं।  एक प्रकार को विकल्प विक्रेता कहा जाता है।  उसके लिए हम उन्हें ऑप्शन राइटर्स कहते हैं।  क्या यह वही है जो स्ट्राइक प्राइस/कॉल करता है।  आपने इसे खरीदा और यह उसी को छोटा करता है।  जब यह कॉल शॉर्ट करता है, तो यह 5000 देने के लिए बाध्य नहीं होता है। इसे लगभग एक लाख, एक लाख से थोड़ा अधिक देने की आवश्यकता होती है।  इसके लिए अधिक मार्जिन की आवश्यकता क्यों होती है?  क्यों?  ऐसे स्ट्राइक प्राइस पर कोई भी खरीदारी कर रहा है।  उसने रुपये में अगला पुट क्यों नहीं खरीदा।  5000, एक लाख से क्यों।  मैं आपको बताऊँगा।  मैं आपको बताता हूँ, विकल्प खरीदार वह व्यक्ति होता है जो कम कीमत से होता है।  मैंने क्या कँहा।  कौन कम राशि से, कौन कम या कम पूंजी से एक अच्छा लाभ कमाना चाहता है।  छोटी पूंजी के जरिए, ठीक है लेकिन, वह अपने रिस्क फैक्टर को हाई रखता है।  क्योंकि छोटी पूंजी से लाभ तो होता ही है साथ ही हानि होने के भी बड़े चांस होते हैं।  क्यों?  यह अब आपके लिए समझ में आएगा।  थीटा के कारण (डेल्टा के कारण)।  अब आपको सब कुछ पता चल जाएगा।  एक विकल्प विक्रेता कौन है?  ठीक है एक विकल्प विक्रेता कौन है?  ऑप्शन विक्रेता वह व्यक्ति होता है जो इस विकल्प को खरीदने के बारे में सोचता है।  क्योंकि उसके पास बहुत बड़ी पूंजी है।  उसके पास एक है।  उसके पास अच्छी पूंजी है।  उसके पास बहुत बड़ी रकम है।  उसके पास लगभग अच्छी खासी रकम है।  अच्छी रकम का अनुमान लगाकर वह छोटे-छोटे रिटर्न कमाना चाहता था।  यदि आप अधिक पूंजी निवेश करते हैं, तो आप अधिक कमाई भी कर सकते हैं।  लेकिन अगर मैं 1-2 लॉट की बात करूं।  वह छोटे रिटर्न बनाना चाहता था।  हालांकि, वह अपने रिस्क लेवल को कम करना चाहते थे।  ठीक है ऐसा क्यों?  क्योंकि उसके पास अच्छी खासी रकम है।  उसके पास सोचने का एक अलग तरीका है।  उनकी जोखिम लेने की क्षमता अलग है।  वह जोखिम नहीं लेना चाहता।  उसके पास 2 करोड़ रुपये हैं, चलिए मान लेते हैं।  दो करोड़ में ऐसा ही है कि मैं आज पचास लाख और कल एक करोड़ कमाता हूं।  नहीं, ऑप्शन के खरीदार ऐसा सोचते हैं अगर मेरे पास 10000 रुपये हैं। दस हजार से मैं पांच हजार कमाता हूं।  अगर मेरे पास एक लाख है तो किसी तरह 1,20,000 रुपये या फिर 40,000 कमाएं।  यह एक विकल्प है।  इस दुनिया में कोई भी गलत नहीं है, हमेशा याद रखना।  मेरा काम आपको शिक्षित/समझाना है क्योंकि मेरे पास एक अनुभव है।  यह आपको यह तय करने में मदद करेगा कि आपको ऑप्शन खरीदने/ऑप्शन बेचने के लिए क्या करना चाहिए।  अब देखिए, आपके पास कम पूंजी है या नहीं।  लाचारी विकल्प खरीदना है।  अगर आप खरीदारी का विकल्प चाहते हैं।  तो कम से कम सही तो करो और गलत क्यों।  चलो वापस आते हैं।  ऑप्शन विक्रेता बड़ी राशि छोटा-छोटा मुनाफा कमाना चाहता था लेकिन जोखिम को बिल्कुल कम करना चाहता था।  अगर वह 5000 कमा सकता है तो वह सोचता है, मैं 1000 500/अधिकतम 1500 खो सकता हूं। वह अपने नुकसान को पूरी तरह से कम करने की कोशिश करता है।  विकल्प।  हमने दो तरह के प्रतिभागियों को देखा है ऑप्शन बायर और ऑप्शन सेलर।  हम दोनों के दृष्टिकोण से चीजों को सीखेंगे।  ठीक विकल्प।  इसे और पैसे की जरूरत है।  इसलिए ऑप्शन राइटर, उन्हें ऑप्शन राइटर को ज्यादा पैसा देने की जरूरत है।  अच्छा अब आपको क्या करना है?  चलो यह सब करते हैं।  हम विकल्प खरीदार के दृष्टिकोण से बात करेंगे, विक्रेता के दृष्टिकोण से, मैं इसके बारे में बाद में बात करूंगा।  हमारा दृष्टिकोण पीओवी विकल्प खरीदार है।  अब क्या है, जब भी हमें ऑप्शन खरीदकर व्यापार करने की आवश्यकता होती है।  अब देखो।  विकल्पों में, आपको वास्तव में निर्देश नहीं मिलेंगे।  दिशा आपको निफ्टी चार्ट का प्राइस एक्शन बताएगी।  आप डेटा विश्लेषण कर सकते हैं या ओपन इंटरेस्ट की जांच कर सकते हैं।  यह विकल्प श्रृंखला का एक हिस्सा है।  मैंने ऑप्शन ट्रेड पर एक ब्लॉग बनाया था।  आप वह भी देख सकते हैं।  आइए विकल्प खरीदार के दृष्टिकोण को देखें।  हम विकल्प खरीदार के दृष्टिकोण से सुनेंगे।  अब क्या होता है?  मैंने जो कहा, जो कॉल या पुट अप/डाउन करेगा, वह निफ्टी चार्ट द्वारा होगा।  बैंक निफ्टी 15 मिनट की समय सीमा, यह 5 मिनट की समय सीमा आपको बताएगी।  मौसम बाजार ऊपर/नीचे जाएगा।  अगर बाजार ऊपर जाता है तो हम कॉल ऑप्शन खरीद लेंगे।  कॉल ऑप्शन/कॉल यूरोपियन इसीलिए C कहते हैं। जिसे हम सीधे खरीदते हैं, जैसे हमने C खरीदा, अगर 100 में 18500 मिल रहा है, मान लेते हैं।  5000 देकर हमने एक लॉट खरीदा।  फिर मार्केट ऊपर जाएगा तो C बढ़ेगा लेकिन मार्केट नीचे जाएगा तो हमारा नुकसान होगा भाई।  हमें नुकसान होगा।  अब, अगर हम सोचते हैं कि बाजार नीचे जाएगा।  मुझे लगता है कि यह टूटने का समर्थन करेगा और सिर और कंधे बन जाएगा और 15 मिनट की समय सीमा में यह टूट गया।  आप क्या करते हैं, पीई खरीदते ही आप पीई खरीद लेते हैं।  जब बाजार नीचे जाने लगा तो पीई का मूल्य बढ़ने लगा।  पीई का निफ्टी से उलटा संबंध होता है।  और, C का समानुपाती संबंध है।  तो, आपको पता चल गया है कि आपको क्या करना है।  आपको यह पता चल गया है कि कब आपको एक कॉल खरीदनी चाहिए और अभी पुट करना चाहिए, क्या होता है, कौन सी कॉल/पुट आपको खरीदने की आवश्यकता है?  अगर निफ्टी 18500 पर है। ठीक है मौके पर।  हमें मौके का चार्ट देखने की जरूरत है, भविष्य की नहीं।  हमेशा स्पॉट्स का चार्ट देखने की जरूरत है।  यह हमेशा सही सटीकता देता है।  निफ्टी 18500 पर स्पॉट हुआ। तो, हमें इनमें से किसे खरीदना चाहिए?  अध्ययन करने से पहले, हमें कौन सा खरीदना चाहिए?  हमें दो नए शब्द लाने की जरूरत है।  इन द मनी एंड आउट ऑफ द मनी।  इन द मनी एंड आउट ऑफ द मनी, ये क्या हैं?  यह एक ऐसी चीज है जो बताती है कि आपके स्ट्राइक मूल्य को किसने परिभाषित किया।  अब मैं समझाना शुरू करूँगा।  पैसे में या पैसे से बाहर।  मान लीजिए निफ्टी 18500 है। अगर हो सके तो मैं 18400 से कॉल करता हूं।  पहले हम केवल कॉल्स के बारे में बात करेंगे।  के संबंध में, हम बाद में देखेंगे।  अगर मैं लिखूं Call is of 400 तो आप to, इस Statement का।  अब साथ-साथ देखिए, एक्सपायरी भी आएगी।  एक्सपायरी मैं हमेशा कहता हूं, इंट्राडे में हमेशा करेंट एक्सपायरी चुनें।  और Swing&#39;s हमेशा मासिक चुनें यदि आज समाप्ति का दिन है, और आप आश्वस्त नहीं हैं।  विकल्प खरीदार के नजरिए से बात कर रहे हैं।  आपका विश्लेषण काम नहीं करेगा और आपको उच्च हानि/लाभ का सामना करना पड़ सकता है।  लाभ की कोई सीमा नहीं है।  हालांकि, अगर नुकसान होता है तो यह पूंजी को कम कर सकता है।  आप अभी भी अगली समाप्ति पर जा सकते हैं।  मुझे उम्मीद है कि आप एक्सपायरी की बात समझ गए होंगे।  18400 कॉल।  अगर मैं इसे कॉल के रूप में लिखता हूं।  फिर इसे पढ़ें।  निफ्टी 18400. सी का मतलब क्या होता है?  दिशा सी क्या है?  ऊपर।  क्या निफ्टी 18400 के ऊपर है?  सत्य क्या है?  हाँ, यह ऊपर है।  जब आप एक बयान पढ़ते हैं और यह सच के रूप में सामने आता है।  फिर आप कहते हैं कि यह इन द मनी है।  यह एक अत्यंत सरल अवधारणा है।  जब आप स्ट्राइक प्राइस लिखते हैं, 18600 सीई।  इस बयान को हिंदी में पढ़ें।  तकनीकी संख्याएँ CE/अन्य संख्याएँ लिखी जाती हैं।  क्या निफ्टी 18600 के ऊपर है?  असत्य।  निफ्टी 18500 पर है। आप झूठ बोल रहे हैं।  जब भी आप शब्दों में बोलें तो स्ट्राइक प्राइस।  अगर यह सच/गलत है।  यदि असत्य हो तो उसे OTM कहते हैं।  इसका मतलब यह पैसे से बाहर है।  आउट ऑफ द मनी होने पर क्या होता है।  इसका रेट भी कम से कम होगा क्योंकि इस डेल्टा में बेहद कम है।  कई स्थितियों में, यह अनुपस्थित है।  यह उस दिन पर निर्भर करता है जिस दिन व्यापार होता है।  किस घंटे ट्रेडिंग हो रही है।  ठीक है इसमें थीटा ही है।  अब, थेथा/डेल्टा क्या है। तो, यह एक ITM और OTM है।  आपको क्या समझने की आवश्यकता है?  आपको अपने दिमाग का ज्यादा इस्तेमाल नहीं करना है।  आपको यह समझने की जरूरत है कि आपको इन द मनी और आउट ऑफ द मनी में से किसे चुनना है।  ठीक है चलो और अभ्यास करते हैं।  आइए अगले पेज पर आते हैं।  इन द मनी या आउट ऑफ द मनी समझने के लिए मान लेते हैं कि बैंक निफ्टी की कीमत क्या है?  बैंक निफ्टी कब बंद हुआ?  बैंक निफ्टी 43708 पर बंद हुआ। 43708 पर बंद हुआ।  43708. बैंक निफ्टी एक उदाहरण है जिसे हम लेंगे।  यह हमारे लिए अच्छा रहेगा।  फिर दो बार हमने अभ्यास किया।  करीब 43708 रुपये पर बैंक निफ्टी की क्लोजिंग भी दी गई है।  पुट का उदाहरण लेते हैं।  यह आपके लिए अच्छा रहेगा।  अगर मैं किसी बैंक निफ्टी का पीई निकालता हूं।  बैंक निफ्टी पीई कौन सा पीई।  मान लेते हैं, 43800 PE।  मैं यहाँ लिख रहा हूँ।  एक्सपायरी कुछ भी हो।  जिसके बारे में हम पहले ही बात कर चुके हैं।  अब आप बयान पढ़िए।  बैंक निफ्टी 43800 है। पीई का मतलब ऊपर या नीचे है?  यह नीचे है।  वास्तव में, वर्तमान काल में।  क्या बैंक निफ्टी 43800 के नीचे है?  निश्चित रूप से यह नीचे है।  इस हड़ताल को कहा जाएगा?  इन द मनी (इन द मनी)।  इसमें इसका अधिक मूल्य है।  अगर मैं कुछ और स्ट्राइक प्राइस लिखता हूं, तो मैंने 43500 PE खरीदा है।  मैंने सोचा था कि बाजार नीचे जाएगा।  इसलिए, मैं कोई भी पीई खरीद सकता हूं।  लेकिन इन द मनी या आउट ऑफ द मनी।  पहले इसे पहचानने की कोशिश करें फिर मैं आपको बताउंगा कि किसे चुनना है।  फिर, इसे पढ़ें।  भाषा को हिंदी या अंग्रेजी में परिवर्तित करें।  क्या बैंक निफ्टी 43500 के नीचे है?  यह झूठ बोल रहा है।  बैंक पॉजिटिव में 43500 बाय 200 के ऊपर है।  असत्य।  असत्य के मामले में जब आप असत्य कहते हैं तो इसे आउट ऑफ द मनी बनाया जाएगा।  यह थोड़ा सस्ता है।  यह थोड़ा सस्ता है।  वह मैं आपको जेरोधा में ले जाकर दिखाऊंगा।  कि यह सस्ता है।  मुझे उम्मीद है कि अब आप इन द मनी और आउट ऑफ द मनी का मतलब समझ गए होंगे।  ठीक है, मुझे आशा है कि आप इन द मनी और आउट ऑफ द मनी का अर्थ समझ गए होंगे।  अब क्या होता है?  अब, 43700 मैंने लिखा।  43800, 43900, 43900 43600। मैंने चार स्ट्राइक मूल्य लिखे हैं।  अब, एक और, मुझे 43500 लिखना चाहिए। क्या होता है?  हम कॉल के बारे में बात करेंगे।  हम कॉल सीई के बारे में बात कर रहे हैं।  हम जानते हैं कि निफ्टी 43700 पर है। मान लेते हैं, यह 43700 पर नहीं है। यह 437 पर है। क्या मैं बताऊं कि यह किस पर है?  बिल्कुल, हम जिस समय बात कर रहे हैं वह 708 पर है। चलिए 708 नंबर का उपयोग करते हैं। बैंक निफ्टी 43708 पर है यह सच है।  यह सच है।  अब, कॉल साइड पर स्ट्राइक मूल्य के बारे में बात करते हैं।  अब अगर मैं इसके बारे में बात करूं।  तुम भी मेरे साथ बात करो।  जवाब दो, ठीक है।  तो, भाई, मुझे बताओ, 43500CE।  सभी में CE लिखें।  अब बताओ।  क्या बैंक निफ्टी 43500 के ऊपर है?  भाई यह सच है।  तो, इसे इन द मनी क्या कहा जाएगा।  क्या निफ्टी 43600 के ऊपर है?  निश्चित रूप से।  इसे इन द मनी कहा जाएगा।  क्या यह 43700 से ऊपर है?  ज़रूर भाई, इसे क्या कहेंगे?  पैसे में।  43800 है?  यह झूठ है।  इसे आउट ऑफ द मनी कहा जाएगा।  इसे आउट ऑफ द मनी क्या कहा जाना चाहिए।  अब, आप समझ गए हैं कि यह एक आउट ऑफ द मनी है और यह एक इन द मनी है।  और एक और &#39;एट द मनी&#39; है।  पैसे पर एक बहुत ही महत्वपूर्ण अवधारणा है।  यदि आप जीवन में ट्रेडिंग सीखना चाहते हैं, यदि आप कुछ भी करना चाहते हैं, तो यह केवल मूल बातें हैं।  आपका दिमाग अपने आप इस तरह काम करे और तुरंत ITM/OTM का जवाब दे।  माफी चाहता।  यह इन द मनी है।  अब, क्या होता है?  जो कुछ भी स्ट्राइक प्राइस के पास है उसे एटीएम भी कहा जा सकता है।  इसका मतलब है, अब 43700 आईटीएम है, मैं सहमत हूं।  यह निश्चित रूप से इन द मनी विकल्प है।  लेकिन यह एट द मनी भी है क्योंकि बाजार इसके बिल्कुल नजदीक है।  यह इसके ठीक निकट है।  हम कह सकते हैं देखें, तकनीकी भाषा।  न तो सीएफए और न ही सीएमटी बनाया गया था, हम सिर्फ बुनियादी व्यावहारिक व्यापार सीख रहे हैं।  बोलचाल की भाषा में, व्यावहारिक व्यापार की भाषा में।  मैं इसे 43800 को एट द मनी भी कह सकता हूं।  इसके बावजूद, ओटीएम होने के नाते।  यह जो अर्थ बता रहा है, वह बिट एटीएम/आईटीएम/ओटीएम हो सकता है।  जो कुछ भी निकट है, स्ट्राइक मूल्य को एटीएम कहा जाता है।  ठीक है।  यह बहुत महत्वपूर्ण है, ठीक है।  यह पैसे पर स्ट्राइक मूल्य है।  पैसा वही है जो आने वाला है।  ठीक है, अच्छा है।  मुझे उम्मीद है कि हमने काफी अभ्यास किया है।  कि आपको पता चल गया कि कौन सा है।  अब, मैं तुम्हें एक परीक्षा दूंगा।  अभी करें और कमेंट में जवाब दें।  अगला नहीं देखें।  निफ्टी कहाँ है?  निफ्टी कहाँ है?  निफ्टी बिल्कुल 497 पर बैठा है। 18497, यह होमवर्क है।  अभी बताएं,  कमेंट करके, ताकि मुझे पता चले कि आप कितना समझते हैं।  अगर 18500 डाल दिया।  जानबूझकर, आपको पुट का उदाहरण दे रहा हूँ।  600 पीई।  18700 पीई।  18400 पीई।  18300 पीई।  हमने फाइव स्ट्राइक प्राइस लिया है।  अब, आपको ITM/OTM के लिए आपकी थोड़ी मदद करनी होगी।  ऊपर एक पढ़ें, क्या निफ्टी 18700 के नीचे है?  सही कह रहे हो बॉस।  यह झूठ नहीं बोल रहा है, क्या यह वर्तमान काल में 18700 से नीचे है?  हाँ।  तो, इसे इन द मनी कहा जाएगा।  अच्छा।  अब एक बात बताओ।  क्या निफ्टी 18400 पर है?  नहीं, क्या यह झूठ बोल रहा है निफ्टी 18500 पर है। इसलिए, मुझे 300 करने की आवश्यकता है। उदाहरण के लिए, 18300 के नीचे, झूठ बोलना।  यानी 500 पर। झूठ बोलना।  झूठ बोलने का मतलब है कि इसे कौन सा स्ट्राइक प्राइस कहा जाएगा?  ओटीएम।  गृहकार्य वह है जो आपको बताना है, शेष तीन में।  इसमें कौन-कौन से एटीएम हैं?  यह आपका होमवर्क है।  मुझे उम्मीद है कि आप यह होमवर्क करेंगे।  कॉमेंट करें।  और हो सके तो क्यों भी लिखिए?  शरमाओ मत।  यदि आप नए/शुरुआती हैं।  लोग क्या सोचेंगे?  मैं इतना भी नहीं जानता।  वे शायद पहले शुरू कर चुके होंगे।  या, कम ही लोग ट्रेडिंग करना नहीं जानते हैं।  या फिर कोई होगा जो दो महीने बाद ब्लॉग के पंच के बाद देखेगा।  इसका मतलब यह नहीं है कि आप कमजोर हैं।  यह ठीक है।  सभी की दौड़ एक साथ शुरू नहीं होती।  हम एक ही समय में पैदा नहीं हुए हैं।  हम एक ही समय में काम नहीं करते हैं।  सही।  यह ठीक है।  तुम यह गृहकार्य करो।  मैं बुनियादी बातों में आशा करता हूं, जो मैंने आप लोगों को सिखाया है।  विकल्पों की मूल बातें क्या हैं?  एटीएम/ओटीएम किसे कहते हैं?  कॉल/पुट और एटीएम/आईटीएम क्या है?  अब, क्या करने की आवश्यकता है?  हमें जो करना है वह चयन है।  यदि ऊपर या नीचे देखें, तो मुद्रास्फीति या मंदी, बुल या भालू विजेता खरीदार या विक्रेता कौन है?  यह आपको निफ्टी का चार्ट बताएगा।  उसके लिए, आप मेरा प्राइस एक्शन ब्लॉग देखें।  मेरा बाजार विश्लेषण ब्लॉग देखें।  और, मैं मूल्य कार्रवाई पर और अधिक बनाऊंगा।  या, ओपन इंटरेस्ट डेटा।  मैं भी एक समर्पित ब्लॉग बनाउंगा जैसे मैंने विकल्प श्रृंखला के लिए किया था।  आपको पता चल गया है कि बाजार कहां जा रहा है?  बाजार ऊपर जा रहा है।  स्ट्राइक प्राइस जानना आपके लिए जरूरी है।  आपको कौन सा खरीदना है?  मैं यूनानियों पर एक समर्पित ब्लॉग बनाऊंगा।  यह व्यावहारिक रूप से आपकी बहुत मदद नहीं करेगा।  हालाँकि, यह निश्चित रूप से आपके ज्ञान में वृद्धि करेगा।  आपको वह ब्लॉग जरूर देखना चाहिए।  लेकिन मैं आपको बताता हूँ, जब कोई विकल्प बनाया जाता है तो यह ग्रीक के माध्यम से बनाया जाता है।  डेल्टा+थीटा+गामा+वेगा+रो.  यह बहुत जटिल है।  हम इसे अभी नहीं कर सकते, यह स्पष्ट है।  हम क्या कर सकते हैं।  मैं आपको डेल्टा और थीटा के बारे में संक्षेप में बताऊंगा।  दो चीजें हैं।  आइए इसकी संक्षेप में चर्चा करें।  चलिए डेल्टा को भी छोड़ देते हैं, मैं इस पर चर्चा नहीं करना चाहता।  विकल्प बनाया गया है मैं आपको ग्रीक में बताऊंगा।  मैं आपको बताता हूँ, विकल्प बने हैं।&lt;/div&gt;&lt;div&gt;लेकिन आज के लिए इतना ही मिलते है अगली पोस्ट में तब तक आप सीखिए और लाइव मार्केट में एनालिसिस कीजिए।&amp;nbsp;&lt;/div&gt;&lt;div&gt;धन्यवाद।&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/2719764933722923548/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/05/stock-market.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/2719764933722923548'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/2719764933722923548'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/05/stock-market.html' title='अंबानी बन जाओगे जानो stock Market का यह राज.....'/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJ3-0pxJAaUzm8iFK9GJuTfJThckfvgjKX47bVtYTLpOECrrRz86L3EYlZyqzLv0H27OHgqT6OaRXSp7sMt-4_TWfcz--EjwWqJdJEC31PHyn6CpgLX3ifJpoudw4nvAdd8CvCaOWU-Mk3yYLUep_FbKO65OC4Q28f7It6arrtrAbRrlkRt1cZWOhrWA/s72-c/Picsart_23-05-25_11-08-22-937.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-4310103021722379213</id><published>2023-04-21T13:03:00.002+05:30</published><updated>2023-04-21T13:03:40.544+05:30</updated><title type='text'>Live score </title><content type='html'>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;Live IPL Score&lt;/title&gt;
	&lt;style&gt;
.cricket-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.cricket-logo img {
  height: 80%;
  width: 80%;
  object-fit: contain;
}

.cricket-logo::before {
  content: &quot;&quot;;
  position: absolute;
  height: 80%;
  width: 80%;
  top: 10%;
  left: 10%;
  background-image: url(&#39;https://img.icons8.com/officel/80/000000/cricket-bat.png&#39;);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-20deg);
}

.cricket-logo::after {
  content: &quot;&quot;;
  position: absolute;
  height: 80%;
  width: 80%;
  top: 10%;
  left: 10%;
  background-image: url(&#39;https://img.icons8.com/color/80/000000/cricket-ball.png&#39;);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(20deg);
}

/* Use the cricket logo in your HTML */
&lt;div class=&quot;cricket-logo&quot;&gt;
  &lt;img src=&quot;https://img.icons8.com/color/96/000000/cricket.png&quot; alt=&quot;cricket logo&quot;&gt;
&lt;/div&gt;
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;h1&gt;Live IPL Score&lt;/h1&gt;
	&lt;div id=&quot;score-container&quot;&gt;
		&lt;p&gt;Loading...&lt;/p&gt;
	&lt;/div&gt;
&lt;script&gt;
		const data = null;

const xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener(&quot;readystatechange&quot;, function () {
	if (this.readyState === this.DONE) {
		console.log(this.responseText);
	}
});

xhr.open(&quot;GET&quot;, &quot;https://livescore6.p.rapidapi.com/matches/v2/get-h2h?Category=soccer&amp;Eid=702093&quot;);
xhr.setRequestHeader(&quot;X-RapidAPI-Key&quot;, &quot;3b893e0a25msh7162cf2538c9ecep18a8f4jsn17b8ed74f3ae&quot;);
xhr.setRequestHeader(&quot;X-RapidAPI-Host&quot;, &quot;livescore6.p.rapidapi.com&quot;);

xhr.send(data);
	&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/4310103021722379213/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/04/live-score.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/4310103021722379213'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/4310103021722379213'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/04/live-score.html' title='Live score '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-668191124488413518</id><published>2023-03-22T13:21:00.000+05:30</published><updated>2023-03-22T13:21:00.719+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Video Games"/><title type='text'>SEA DIVING GAME ONLINE </title><content type='html'>&lt;!--
    NAME : SEA DIVING
    DATE : March 22, 2023
    AUTHOR : Arun jat
--&gt;
&lt;!DOCTYPE html&gt;
&lt;html&gt;
    &lt;head&gt;
        &lt;title&gt;SEA DIVING&lt;/title&gt;
        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://use.fontawesome.com/releases/v5.8.2/css/all.css&quot; integrity=&quot;sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay&quot; crossorigin=&quot;anonymous&quot;&gt;
        &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;canvas id=&quot;canvas&quot;&gt;&lt;/canvas&gt;
        &lt;div id=&quot;first&quot;&gt;
            &lt;h1 style=&quot;color:#F0ECEF&quot;&gt;SEA DIVING&lt;/h1&gt;
            &lt;p style=&quot;color:#1DCA04&quot;&gt;Catch the coins and kill as many fish as possible !&lt;/p&gt;
            &lt;p&gt;&lt;i style=&quot;font-size:0.7em;color:#E90303&quot;&gt;Be careful not to touch the mines and fish !&lt;/i&gt;&lt;/p&gt;
            &lt;i class=&quot;fas fa-play-circle fa-4x&quot;&gt;&lt;/i&gt;
        &lt;/div&gt;
        &lt;div id=&quot;loader&quot;&gt;LOADING&lt;div id=&quot;bar&quot;&gt;&lt;/div&gt;&lt;/div&gt;
        &lt;div id=&quot;gameover&quot;&gt;
            &lt;span id=&quot;outputgameover&quot;&gt;&lt;/span&gt;&lt;br&gt;
            &lt;i class=&quot;fas fa-play-circle fa-2x&quot; style=&quot;margin-top:30px&quot;&gt;&lt;/i&gt;
        &lt;/div&gt;
        &lt;div id=&quot;time&quot;&gt;120&lt;/div&gt;
        &lt;div id=&quot;cmdleft&quot;&gt;
            &lt;div class=&quot;cmd up&quot;&gt;&lt;i class=&quot;fas fa-chevron-left&quot;&gt;&lt;/i&gt;&lt;/div&gt;
            &lt;div class=&quot;cmd down&quot;&gt;&lt;i class=&quot;fas fa-chevron-right&quot;&gt;&lt;/i&gt;&lt;/div&gt;
        &lt;/div&gt;
        &lt;div id=&quot;cmdright&quot;&gt;
            &lt;div class=&quot;cmd btns power&quot; id=&quot;btnpower&quot;&gt;&lt;i class=&quot;fas fa-power-off&quot;&gt;&lt;/i&gt;&lt;/div&gt;
            &lt;div class=&quot;cmd ca&quot;&gt;X&lt;/div&gt;

        &lt;/div&gt;
        &lt;img src=&quot;https://i.ibb.co/hBpfV79/gif.gif&quot; id=&quot;imggif&quot;&gt;
        &lt;div id=&quot;outputcoin&quot;&gt;
            &lt;img src=&quot;https://i.ibb.co/QKpBHtv/token.png&quot; id=&quot;imgcoin&quot;&gt;
            &lt;span id=&quot;scorecoin&quot;&gt;0&lt;/span&gt;
        &lt;/div&gt;
        &lt;div id=&quot;outputfish&quot;&gt;
            &lt;img src=&quot;https://i.ibb.co/kSGCLv0/pirana.png&quot; id=&quot;imgfish&quot;&gt;
            &lt;span id=&quot;scorefish&quot;&gt;0&lt;/span&gt;
        &lt;/div&gt;
        &lt;div id=&quot;outputlife&quot;&gt;
            &lt;div id=&quot;barlife&quot;&gt;&lt;/div&gt;
        &lt;/div&gt;
    &lt;/body&gt;
    &lt;style&gt;
        body {
    position:fixed;
    height:100%;
    width:100%;
    margin:0;
    background-color:#959595;
    font-family: &#39;Ubuntu&#39;, sans-serif;
     user-select: none;
    -webkit-user-select : none;
    overflow:hidden;
}
#loader{
    position:absolute;
    height:50px;
    margin:auto;
    left:0;top:0;right:0;bottom:0;
    color:white;
    text-align:center;
    font-size:0.8em;
    display:none;
    transform:rotate(-90deg);
    z-index:1;
}
#bar{
    position:absolute;
    bottom:0;
    width:0%;
    height:8px;
    background-color:green;
    border-radius:5px;
    box-shadow:0 1px 2px white;
}
#first{
    position:absolute;
    width:250px;
    height:250px;
    margin:auto;
    left:0;top:0;right:0;bottom:0;
    color:white;
    text-align:center;
    font-size:1em;
    transform:rotate(-90deg);
    display:none;
}
h1{
    letter-spacing:5px;
    font-weight:bold;
}
#gameover{
    display:none;
    position:absolute;
    width:250px;
    height:100px;
    text-align:center;
    margin:auto;
    left:0;top:0;right:0;bottom:0; 
    color:white;
    font-size:1.5em;
    transform:rotate(-90deg);
}
#cmdleft{
    position:absolute;
    height:100px;
    background-color:#333131;
    border-radius:0 0 20px 20px;
    display:flex;
    justify-content:space-around;
    align-items:center;
    box-shadow:
    inset 2px 2px 5px black,
    inset 0 -2px 5px black, 
    inset 0 1px 0px white,
    2px 0 2px silver;
    z-index:1;
}
#cmdright{
    position:absolute;
    font-size:1em;
    height:100px;
    background-color:#333131;
    border-radius:20px 20px 0 0;
    box-shadow:
    inset 2px 2px 5px black, 
    inset 0 -2px 5px black,
    inset 0 -1px 0 white,
    2px 0 2px silver;
    z-index:1;
}
#canvas{
    position:absolute;
    top:110px;
    background-color:black;
    box-shadow:2px 0 2px silver;
}
.cmd{
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid black;
}
.up,.down{
    font-size:2.5em;
    width:70px;
    height:70px;
    box-shadow:
    -1px 1px 1px #161414, 
    inset -1px 1px 1px #626262;
}
.ca{
    position:absolute;
    top:13.5px;
    right:35px;
    font-size:2em;
    width:70px;
    height:70px;
    color:white;
    box-shadow:
    -1px -1px 1px #161414, 
    inset -1px -1px 1px #626262;
    transform:rotate(-90deg);
}

.power{
    font-size:1em;
    width:30px;
    height:30px;
    transform:rotate(-90deg);
     box-shadow:
    -1px -1px 1px #161414, 
    inset -1px -1px 1px #626262;
    color:#C81414;
    text-shadow:none;
    position:absolute;
    top:20px;
    left:20px;
}
#time{
    position:absolute;
    width:50px;
    height:20px;
    text-align:center;
    color:white;
    z-index:2;
    border-radius:5px;
    box-shadow:inset -0.5px -0.5px 2px #EEECEC, inset 0.5px 0.5px 2px #EEECEC;
    background:rgba(255,255,255,.3);
    font-size:1em;
    display:none;
}
#imggif{
    position:absolute;
    width:80px;
    height:80px;
    transform:rotateX(180deg)rotate(-90deg)translateZ(-10px);
    display:none;
}
#outputcoin, #outputfish{
    position:absolute;
    width:60px;
    height:20px;
    color:white;
    display:none;
    justify-content:left;
    align-items:center;
    font-size:1em;
    font-weight:bold;
}

#imgcoin, #imgfish{
    width:20px;
    height:20px;
    transform:rotate(90deg);
}
#scorecoin, #scorefish{
    margin-left:5px;
}
#outputlife{
    display:none;
    position:absolute;
    top:115px;
    left:15px;
    width:12.5px;
    height:50px;
    background-color:#C81414;
    border:0.5px solid black;
    box-shadow:inset 0 0 2px black;
}
#barlife{
    height:100%;
    background-color:#039F28;
    box-shadow:inset -0.5px 0 2px white;
}
.fa-play-circle{
    animation:play 1s linear infinite;
}
@keyframes play{
    50%{transform:scale(.9)}
}
    &lt;/style&gt;
    &lt;script&gt;
        &quot;use strict&quot;;

let W, H, c, ctx;
let checkVibrate;
let intervalBar, intervalBubble, intervalCoin, intervalBomb, intervalFish, intervalTimer; 
let bubbles = [], coins = [], bombs = [], arrows = [], fishs = [];
let imgCoin, imgBomb, imgFish, imgArrow;
let statePower = false, playing = false;
let cptBar = 0;
let posImg = {x:0, y:0};
let valueDirection = 0;
let scoreCoin = 0, scoreFish = 0;
let numArrow = 3;
let life = 100;
let timer = 120;

class Dot{
    constructor(x,y,r){
        this.x = x;
        this.y = y;
        this.r = r;
    }
}

class Bubble extends Dot {
    constructor(x,y,r) {
        super(x,y,r);
    }
    draw() {
        ctx.beginPath();
        ctx.fillStyle = &#39;0362E8&#39;;
        ctx.strokeStyle = &#39;white&#39;;
        ctx.lineWidth = 0.5;
        ctx.arc(this.x, this.y, this.r, 0, 2 * Math.PI);
        ctx.fill();
        ctx.stroke();
    }
    update() {
        this.x--;
        this.draw();
    }
} 

class Coin extends Dot {
    constructor(x,y,r) {
        super(x,y,r);
    }
    draw() {
        ctx.beginPath();
        ctx.drawImage(imgCoin, this.x-this.r/2, this.y-this.r/2, this.r, this.r);
    }
    update() {
        this.y+=0.5;
        this.draw();
    }
} 

class Bomb extends Dot {
    constructor(x,y,r,a) {
        super(x,y,r);
        this.a = a;
    }
    draw() {
        ctx.beginPath();
        ctx.drawImage(imgBomb, this.x-this.r/2, this.y-this.r/2, this.r, this.r);
    }
    update() {
        this.a += 0.01;
        if(this.x + 0.5*Math.cos(this.a)&lt;W-50&amp;&amp;this.x + 0.5*Math.cos(this.a)&gt;50){
            this.x += 0.5 *Math.cos(this.a);
        }
        this.y++;
        this.draw();
    }
}

class Fish extends Dot {
    constructor(x,y,r) {
        super(x,y,r);
    }
    draw() {
        ctx.beginPath();
        ctx.drawImage(imgFish, this.x-this.r/2, this.y-this.r/2, this.r, this.r);
    }
    update() {
        this.xst = posImg.x+20;
        this.yst = c.height + 100;
        this.x = util.moveFish(this.x, this.xst, 0.01);
        this.y = util.moveFish(this.y, this.yst, 0.01);
        this.draw();
    }
}

class Shoot{
    constructor() {
        this.x = posImg.x+20;
        this.y = c.height - 50;
        this.w = 20;
    }
    draw() {
        ctx.beginPath();
        ctx.drawImage(imgArrow, this.x-this.w/2, this.y-this.w/2, this.w, this.w);
    }
    update() {
        this.y-=5;
        this.draw();
    }
}

const util = {
    newGradient(c1, c2){
        let NG;
        NG = ctx.createLinearGradient(0, 0, W, 0);
        NG.addColorStop(0, c1);
        NG.addColorStop(1, c2);
        return NG;
    },
    random(max=1, min=0){
        return Math.random() * (max - min) + min;
    },
    collision(x0,y0,x1,y1,r){
        return Math.hypot(x0-x1, y0-y1) &lt; r ? true : false;
    },
    moveFish(a,b,c){
        return a+(b-a)*c;
    }
};

const check = () =&gt; {
    for(let a = bubbles.length - 1; a &gt;= 0; a--){
        bubbles[a].update();
        if(bubbles[a].x&lt;30)bubbles.splice(a, 1);
    }
        
    for(let b = coins.length - 1; b &gt;= 0; b--){
            coins[b].update();
            if(coins[b].y&gt;c.height)coins.splice(b, 1);
            else if(util.collision(coins[b].x, coins[b].y, posImg.x+10, c.height - 40, 40)){
                coins.splice(b, 1);
                scoreCoin++;
                updateScores(scorecoin,2);
            }
    }
        
    for(let c = arrows.length - 1; c &gt;= 0; c--){
        arrows[c].update();
        if(arrows[c].y&lt;-50)arrows.splice(c, 1);
    }
        
    for(let d = bombs.length - 1; d &gt;= 0; d--){
        bombs[d].update();
        if(bombs[d].y&gt;c.height+30)bombs.splice(c, 1);
        else if(util.collision(bombs[d].x, bombs[d].y, posImg.x+10, c.height - 40, 40)){
            bombs.splice(d, 1);
            life -= 20;
            updateScores(outputlife,1.15);
            if(checkVibrate)navigator.vibrate(300);
        }
    }
        
    for(let e = fishs.length - 1; e &gt;= 0; e--){
        fishs[e].update();

        if(fishs[e].y&gt;c.height+30)fishs.splice(e, 1);
        else if(util.collision(fishs[e].x, fishs[e].y, posImg.x+10, c.height - 40, 45)){
            fishs.splice(e, 1);
            life -= 20;
            updateScores(outputlife,1.15);
            if(checkVibrate)navigator.vibrate(300);
        }
        else{
            for(let i = arrows.length - 1; i &gt;= 0; i--){
                if(fishs.length&gt;0){
                    if(util.collision(fishs[e].x, fishs[e].y,arrows[i].x, arrows[i].y, 20)){
                        fishs.splice(e, 1);
                        arrows.splice(i, 1);
                        scoreFish++;
                        updateScores(scorefish,2);
                    }
                }
            }
        }
    }
    
    if(timer&lt;=0)end(&quot;GAME OVER&quot;);
    else if(life&lt;1)end(&quot;YOU LOSE&quot;);
};

const end = (x) =&gt;{
    playing = false;
    stopAllInterval();
    clear();
    imggif.style.display =  &#39;none&#39;;
    canvas.style.filter = &#39;blur(3px)&#39;;
    gameover.style.display =  &#39;block&#39;;
    outputgameover.innerHTML = x;
};

const updatePlayer = () =&gt; {
    if(posImg.x+valueDirection&gt;20&amp;&amp;posImg.x+valueDirection&lt;W-60)posImg.x += valueDirection ;
    imggif.style.left =  posImg.x + &#39;px&#39;;
};

const clear = () =&gt; {
    ctx.fillStyle = util.newGradient(&#39;#0362E8&#39;,&#39;#02224F&#39;);
    ctx.fillRect(0, 0, W, H);
};

const displayArrow = () =&gt; {
    ctx.beginPath();
    for(let i=0; i&lt;numArrow; i++){
        ctx.drawImage(imgArrow, c.width-20, c.height - 25 - i*25, 20, 20);
    }
};

const updateTimer = () =&gt; {
    timer--;
    time.innerHTML = timer;
};

const updateScores = (obj, scale) =&gt; {
    scorecoin.innerHTML = scoreCoin;
    scorefish.innerHTML = scoreFish;
    barlife.style.height = life + &quot;%&quot;;
    obj.style.transform = &#39;scale(&#39; + scale + &#39;)&#39;;
    setTimeout(function() { obj.style.transform = &#39;scale(1)&#39;; }, 300);
};

const animate = () =&gt; {
    if(playing){
        clear();
        displayArrow();
        updatePlayer();
        check();
        wave.draw();
    }
                
    requestAnimationFrame(animate);
};

const wave = {
    x: 20,
    amplitude: 2,
    frequency: 0.2,
    wavelength: 0.015,
    speed: null, 
    waveChange: 0,

    draw() {
        this.speed += this.frequency;
        this.waveChange++;
        if(this.waveChange &gt; 100) {
            this.waveChange = 0;
            this.amplitude = util.random(15);
        }
        ctx.beginPath();
        ctx.strokeStyle = &#39;white&#39;;
        ctx.lineWidth = 1;
        for(let i=0; i &lt;c.height ; i++) {
            let wave = Math.sin(i * this.wavelength + this.speed);
            ctx.moveTo(0, i);
            ctx.lineTo(this.x + wave * this.amplitude, i );
        }
        ctx.stroke();
        ctx.closePath();
    }
};


const power = () =&gt; {
    statePower = statePower ? false : true;
    btnpower.style.color = statePower ? &#39;#119C02&#39; : &#39;#C81414&#39;;
    posImg.x = W/2 - 35
    posImg.y = 110;
    statePower ? on() : off();
};

const on = () =&gt; {
    loader.style.display = &#39;block&#39;;
    intervalBar = setInterval(barLoder,10);
};

const stopAllInterval = () =&gt; {
    clearInterval(intervalBubble);
    clearInterval(intervalCoin);
    clearInterval(intervalBomb);
    clearInterval(intervalFish);
    clearInterval(intervalTimer);
};

const reinitValues = () =&gt; {
    stopAllInterval();
    bubbles = [];
    coins = [];
    bombs = [];
    fishs = [];
    playing = false;
    cptBar = 0;
    scoreCoin = 0;
    scoreFish = 0;
    life = 100;
    timer = 120;
    canvas.style.filter = &#39;blur(0px)&#39;;
    scorecoin.innerHTML = scoreCoin;
    scorefish.innerHTML = scoreFish;
    barlife.style.height = life + &quot;%&quot;;
};

const off = () =&gt; {
    ctx.fillStyle = &#39;#000&#39;;
    ctx.fillRect(0, 0, W, H);
    first.style.display = &#39;none&#39;;
    loader.style.display = &#39;none&#39;;
    imggif.style.display = &#39;none&#39;;
    time.style.display = &#39;none&#39;;
    outputcoin.style.display = &#39;none&#39;;
    outputfish.style.display = &#39;none&#39;;
    outputlife.style.display = &#39;none&#39;;
    bar.style.width = cptBar + &#39;%&#39;;
    barlife.style.height = &#39;100%&#39;;
    gameover.style.display = &#39;none&#39;;
    reinitValues();
};

const barLoder = () =&gt; {
    bar.style.width = cptBar + &#39;%&#39;;
    cptBar++;
    if(cptBar&gt;=100){
        first.style.display = &#39;block&#39;;
        loader.style.display = &#39;none&#39;;
        clearInterval(intervalBar);
    }
};

const start = () =&gt; {
    first.style.display = &quot;none&quot;;
    outputcoin.style.display = &#39;flex&#39;;
    outputfish.style.display = &#39;flex&#39;;
    outputlife.style.display = &#39;block&#39;;
    time.style.display = &#39;block&#39;;
    imggif.style.display = &#39;block&#39;;
    gameover.style.display = &#39;none&#39;;
    reinitValues();
    createBubble();
    createCoin();
    createBomb();
    createFish();
    intervalTimer = setInterval(updateTimer, 1000);
    playing = true;
};

const up = () =&gt;{
    valueDirection = -2;
    imggif.style.transform = &#39;rotateX(180deg)rotate(-80deg)translateZ(-10px)&#39;;
};

const down = () =&gt;{
    valueDirection = 2;
    imggif.style.transform = &#39;rotateX(180deg)rotate(-110deg)translateZ(-10px)&#39;;
};

const stop = () =&gt;{
    valueDirection = 0;
    imggif.style.transform = &#39;rotateX(180deg)rotate(-90deg)translateZ(-10px)&#39;
};

const shoot = () =&gt; {
    if(numArrow&gt;0){
        numArrow--;
        arrows.push(new Shoot());
        setTimeout(function() { numArrow++; }, 3000 + numArrow*1000 );
    }
};

const createBubble = () =&gt; {
    let x = posImg.x;
    let y = c.height - 50 + util.random(10,-10);
    let r = util.random(3,1);
    bubbles.push(new Bubble(x,y,r));
    
    clearInterval(intervalBubble);
    let nextInterval = util.random(1500,100);
    intervalBubble = setInterval(createBubble, nextInterval);
};

const createCoin = () =&gt; {
    let x = W - ~~util.random(W-100, 50);
    let y = -50;
    let r = 30;
    coins.push(new Coin(x,y,r));
   
   let newInterval = ~~util.random(6000, 3500);
   clearInterval(intervalCoin);
   intervalCoin = setInterval(createCoin, newInterval);
};

const createFish = () =&gt; {
    let x = W - ~~util.random(W-100, 50);
    let y = -50;
    let r = 50;
    fishs.push(new Fish(x,y,r));
   
   let newInterval = ~~util.random(6000, 3000);
   clearInterval(intervalFish);
   intervalFish = setInterval(createFish, newInterval);
};

const createBomb = () =&gt; {
    let x = ~~util.random(W-50, 50);
    let y = ~~util.random(-100,-50);
    let r = 40;
    let a = util.random(Math.PI*2);
    bombs.push(new Bomb(x,y,r,a));
   
   let newInterval = ~~util.random(3000, 1000);
   clearInterval(intervalBomb);
   intervalBomb = setInterval(createBomb, newInterval);
};

const posCMD = () =&gt; {
    loader.style.width = (H - 220 - 20) +&#39;px&#39;;

    c.width = W - 20;
    c.height = H - 220;
    c.style.left = &#39;10px&#39;;
    
    cmdleft.style.bottom = &#39;10px&#39;;
    cmdleft.style.left = &#39;10px&#39;;
    cmdleft.style.width = (W - 20) + &#39;px&#39;;
    
    cmdright.style.top = &#39;10px&#39;;
    cmdright.style.left = &#39;10px&#39;;
    cmdright.style.width = (W - 20) + &#39;px&#39;;
    
    posImg.x = W/2 - 35;
    posImg.y = 110 + c.height - 80;
    imggif.style.left =  posImg.x + &#39;px&#39;;
    imggif.style.top = posImg.y + &#39;px&#39;;
    
    outputcoin.style.left = &quot;-5px&quot;
    outputcoin.style.top = 110 + c.height-45 + &quot;px&quot;;
    outputcoin.style.transform = &quot;rotate(-90deg)&quot;
    
    outputfish.style.left = &quot;20px&quot;
    outputfish.style.top = 110 + c.height-45 + &quot;px&quot;;
    outputfish.style.transform = &quot;rotate(-90deg)&quot;;
    
    time.style.left = &quot;0px&quot;
    time.style.top = 100 + c.height/2 + &quot;px&quot;;
    time.style.transform = &quot;rotate(-90deg)&quot;;
};

const createImg = () =&gt; {
    imgCoin = new Image();
    imgCoin.src = &quot;https://i.ibb.co/QKpBHtv/token.png&quot;;
    imgBomb = new Image();
    imgBomb.src = &quot;https://i.ibb.co/SdqfDz6/mine.png&quot;;
    imgArrow = new Image();
    imgArrow.src = &quot;https://i.ibb.co/SJcn8GB/bow.png&quot;;
    imgFish = new Image();
    imgFish.src = &quot;https://i.ibb.co/kSGCLv0/pirana.png&quot;;
};

const eventsListener = () =&gt; {
    btnpower.addEventListener(&quot;click&quot;, () =&gt; power() );
    document.getElementsByClassName(&#39;ca&#39;)[0].addEventListener(&quot;touchstart&quot;, () =&gt; shoot() );
    document.getElementsByClassName(&#39;up&#39;)[0].addEventListener(&quot;touchstart&quot;, () =&gt; up() );
    document.getElementsByClassName(&#39;up&#39;)[0].addEventListener(&quot;touchend&quot;, () =&gt; stop() );
    document.getElementsByClassName(&#39;down&#39;)[0].addEventListener(&quot;touchstart&quot;, () =&gt; down() );
    document.getElementsByClassName(&#39;down&#39;)[0].addEventListener(&quot;touchend&quot;, () =&gt; stop() );
    document.getElementsByClassName(&#39;fa-play-circle&#39;)[0].addEventListener(&quot;click&quot;, () =&gt; start() );
    document.getElementsByClassName(&#39;fa-play-circle&#39;)[1].addEventListener(&quot;click&quot;, () =&gt; start() );
};

const init = () =&gt; {
    checkVibrate = window.navigator &amp;&amp; window.navigator.vibrate;
    
    c = document.getElementById(&quot;canvas&quot;);
    W = window.innerWidth;
    H = window.innerHeight;
    ctx = c.getContext(&quot;2d&quot;);
    posCMD();
    createImg();
    eventsListener();
    requestAnimationFrame(animate);
};

onload = init;
    &lt;/script&gt;
&lt;/html&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/668191124488413518/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/03/sea-diving-game-online.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/668191124488413518'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/668191124488413518'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/03/sea-diving-game-online.html' title='SEA DIVING GAME ONLINE '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-685732708773252497</id><published>2023-03-22T12:55:00.001+05:30</published><updated>2023-03-22T12:55:14.795+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Video Games"/><title type='text'>Snake game online </title><content type='html'>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;Styles/style.css&quot;&gt;
    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;ie=edge&quot;&gt;
    &lt;title&gt;Snake Game&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;canvas id=&quot;zone&quot; width=&quot;600&quot; height=&quot;600&quot;&gt;&lt;/canvas&gt;&lt;br&gt;
    &lt;div id=&quot;Up&quot;&gt;Haut&lt;/div&gt;
    &lt;div id=&quot;conteneur&quot;&gt; 
    &lt;div id=&quot;Left&quot;&gt;Gauche&lt;/div&gt;
    &lt;div id=&quot;Right&quot;&gt;Droit&lt;/div&gt;
    &lt;/div&gt;
    &lt;div id=&quot;Down&quot;&gt;Bas&lt;/div&gt;
    &lt;div id=&quot;pause&quot;&gt;Pause&lt;/div&gt;
    &lt;div id=&quot;play&quot; class=&quot;play&quot; &gt;Play&lt;/div&gt;
    
    &lt;style&gt;
        body{
    margin: 0;
    padding: 0;
}
canvas{
    background-color: rgba(44,62,80,0.999);
    display: block;
    margin: auto;
    border: 3px solid red;
    
}
#conteneur{
  width: 50%;
  margin:5px auto;
  /*border: 2px solid black;*/
  display: flex;
  justify-content: space-around;
}
#Up{
    background-color: rgb(104, 104, 104, 0.5);
    color: white;
    border: 2px solid black;
    font-size: 25px;
    font-weight: 300;
    border-radius: 15px;
    margin: auto;
    width: 100px;
    height: 45px;
    text-align: center;
    margin-top: 5px;
    cursor: pointer;
}
#Down{
    background-color: rgb(104, 104, 104, 0.5);
    color: white;
    border: 2px solid black;
    border-radius: 15px;
    font-size: 25px;
    font-weight: 300;
    margin: auto;
    width: 100px;
    height: 45px;
    text-align: center;
    margin-top: 5px;
    cursor: pointer;
}
#Right{
    background-color: rgb(104, 104, 104, 0.5);
    color: white;
    border: 2px solid black;
    border-radius: 15px;
    font-size: 25px;
    font-weight: 300;
    /*display: inline-block;*/
    width: 100px;
    height: 45px;
    text-align: center;
    /*margin-top: 5px;*/
    cursor: pointer;
    /*position: relative;
    left: 45%;*/
}
#Left{
    background-color: rgb(104, 104, 104, 0.5);
    color: white;
    border: 2px solid black;
    font-size: 25px;
    font-weight: 300;
    border-radius: 15px;
    /*display: inline-block;*/
    width: 100px;
    height: 45px;
    text-align: center;
    /*margin-top: 5px;*/
    cursor: pointer;
    /*position: relative;
    left: 45%;*/
}
#pause{
background-color: rgb(104, 104, 104, 0.3);
    color: white;
    padding: 5px;
    border: 2px solid rgb(104, 104, 104, 0.5);;
    font-size: 25px;
    font-weight: 300;
    border-radius: 15px;

    width: 65px;
    height: 30px;
    text-align: center;

    cursor: pointer;
    position: absolute;
    top:550px;
    right:25px;
    
}
#play{
background-color: rgb(104, 104, 104, 0.3);
    color: white;
    padding: 5px;
    border: 2px solid rgb(104, 104, 104, 0.5);;
    font-size: 25px;
    font-weight: 300;
    border-radius: 15px;

    width: 65px;
    height: 30px;
    text-align: center;

    cursor: pointer;
    position: absolute;
    top:550px;
    left:25px;
    
}

#milieu{
    width: 250px;
    margin: auto;
}
@media screen and (max-width: 500px){
    canvas{
        width: 350px;
        height: 350px;
    }
    #Up,#Down,#Right,#Left{
        width: 75px;
        height: 40px;
        font-weight: 300;
        font-size: 15px;
        padding-top: 5px ;
    }
    #conteneur{
      justify-content: space-between;
    }
    #play{
        position: absolute;
    top:310px;
    left:0px;
    }
    #pause{
        position: absolute;
    top:310px;
    right:0px;
    }

}

    &lt;/style&gt;

   &lt;script&gt;
   alert(&quot;Snake Game\nlike and comment&quot;);
       //Déclaration des variables 
var can = document.getElementById(&quot;zone&quot;);
var ctx = can.getContext(&#39;2d&#39;);


var radial = ctx.createRadialGradient(200,100,50,200,100,775);

radial.addColorStop(0,&#39;#34495e&#39;);
radial.addColorStop(0.25, &#39;#2c3e50&#39;);

var radial2 = ctx.createRadialGradient(400,500,50,400,100,775);

radial2.addColorStop(0,&#39;#34495e&#39;);
radial2.addColorStop(0.25, &#39;#2c3e50&#39;);

//le Serpent
var largeur = hauteur = 20;
var x = Math.trunc(Math.random()*can.width/largeur)*largeur;
var y = Math.trunc(Math.random()*can.height/hauteur)*hauteur;
var depX = depY = 0;
var trace = [];
var tailleInitTrace = 5;
var tailleTrace = 5;
var sautTrace = 2;
var tailleMaxTrace = 100;
var compteBoucle = 0;
var sautBoucle = 10;
var randomColor = 0;
var vie = 5;
var hist = &quot;&quot;;
var intervalID;
var collisionTrace = false;

//La cible
var PommeX=Math.trunc(Math.random()*can.width/largeur)*largeur;
var PommeY=Math.trunc(Math.random()*can.height/hauteur)*hauteur;
var PommeRadius = 10;

var score = 0;
var timeout = 0;

window.onload = function() {
    intervalID = setInterval(Game,150);
    document.addEventListener(&#39;keydown&#39;,keyboad);
    document.addEventListener(&#39;click&#39;,keyboadT);
}
//ctx.strokeStyle = &quot;red&quot;;
//ctx.strokeRect(0,0,can.width,can.height);
function Game(){
    ctx.clearRect(0,0,can.width,can.height);

    ctx.beginPath();
    ctx.fillStyle = radial;
    ctx.arc(100,50,250,0,2*Math.PI);
    ctx.fill();
    
    ctx.beginPath();
    ctx.fillStyle = radial2;
    ctx.arc(500,550,250,0,2*Math.PI);
    ctx.fill();

    x += depX*largeur ;
    y += depY*hauteur ;
    
    
    
    //augmente tailleTrace tout les 1000ms
    /*if(tailleTrace &lt;= tailleMaxTrace &amp;&amp; ((depX != 0) || (depY != 0))){
        if((compteBoucle++)%10 == 1){
           sautBoucle--;
           if(sautBoucle &lt; 0){
            tailleTrace += sautTrace;
           }
        }
    }*/
    //on insère x et y dans le tableau
      trace.push({x:x,y:y});
    

    //Tant que le tableau dépasse la taille max 
    if(trace.length &gt; tailleTrace){
        trace.shift();
    }
    
    ctx.lineCap = &quot;round&quot;;
    for(var i=0; i&lt;trace.length; i++){
        ctx.strokeRect(trace[i].x,trace[i].y,largeur-3,hauteur-3);
    }
    for(var j=0; j&lt;trace.length; j++){
      ctx.beginPath();
        ctx.fillStyle = &quot;#ff1111&quot;;
        ctx.arc(trace[trace.length-1].x+5,trace[trace.length-1].y+5,5,0,Math.PI*2);
        ctx.arc(trace[trace.length-1].x+13,trace[trace.length-1].y+5,5,0,Math.PI*2);
        ctx.fill();
        ctx.closePath();
        
        ctx.beginPath();
        ctx.fillStyle = &quot;#fff&quot;;
        ctx.arc(trace[trace.length-1].x+5,trace[trace.length-1].y+5,2.5,0,Math.PI*2);
        ctx.arc(trace[trace.length-1].x+13,trace[trace.length-1].y+5,2.5,0,Math.PI*2);
        ctx.fill();
        ctx.closePath();
        
    }

    

    // Collision
    if(x==PommeX &amp;&amp; y==PommeY){
        score+=10;
        tailleTrace++;
        // collision
        // Si la taille a été augmenté on enlève un saut d&#39;expansion de trace
        /*if(tailleTrace&gt;tailleInitTrace){
        tailleTrace-=sautTrace;
        }*/
        // On réinitialise le compte à rebours pour relancer l&#39;expansion
        //sautBoucle=10;
        // On choisit une autre position pour la pomme
        PommeX=Math.trunc(Math.random()*can.width/largeur)*largeur;
        PommeY=Math.trunc(Math.random()*can.height/hauteur)*hauteur;

        randomColor++;
        randomColor%=3;

        // ...
        ctx.fillStyle=&quot;#d74c3c&quot;;
        for(var i=0;i&lt;trace.length;i++) {
        if(i==trace.length-1){
        switch(randomColor){
        case 0:
        ctx.fillStyle=&quot;#d35400&quot;; 
        break;
        case 1:
        ctx.fillStyle=&quot;#9b59b6&quot;;
        break;
        default:
        ctx.fillStyle=&quot;#1abc9c&quot;; 
        } 
        }
        ctx.fillRect(trace[i].x,trace[i].y, largeur-3, hauteur-3);
       }
    }
       else if(timeout++ &gt; 100 &amp;&amp;  (depX != 0 || depY != 0)) { // 10 secondes
        timeout = 0;
        PommeX=Math.trunc(Math.random()*can.width/largeur)*largeur;
        PommeY=Math.trunc(Math.random()*can.height/hauteur)*hauteur;
        // Incrementation de randomColor
        }

       //Affichage de la cible
    ctx.beginPath();
    ctx.arc(PommeX+PommeRadius, PommeY+PommeRadius,PommeRadius, 0, Math.PI * 2);
    ctx.fillStyle=&quot;#e74c3c&quot;;
    ctx.fill();
    ctx.closePath();
    // Affichage d&#39;un v pour donner l&#39;impression d&#39;une feuille
    ctx.font = &#39;16px Arial&#39;;
    ctx.fillStyle = &#39;#2ecc71&#39;;
    ctx.fillText(&#39;√&#39;, PommeX+3, PommeY+3 );
    // Sauvegarde du contexte
    ctx.save();

    // On change les proportions du contexte en horizontale
    ctx.scale(1, 1.5);
    
    // On dessine notre rond mais en changeant Y (puisque tout est divisé par 1.5)
    // il faut donc divisé par 1.5 pour avoir le même Y que dans le contexte d&#39;origine
    ctx.beginPath();
    ctx.arc(PommeX+PommeRadius + 3, (PommeY+PommeRadius)/1.5,PommeRadius/3, 0, Math.PI * 2);
    ctx.fillStyle=&quot;#ed7365&quot;;
    ctx.fill();
    ctx.closePath();
    
    // On restaure le contexte d&#39;origine
    ctx.restore();
       
    // Affichage du score
    ctx.font = &#39;16px Arial&#39;;
    ctx.fillStyle = &#39;#fff&#39;;
    ctx.fillText(&#39;Score: &#39; + score, 5, 20);
    // Affichage des vies
    ctx.font = &#39;16px Arial&#39;;
    ctx.fillStyle = &#39;#fff&#39;;
    ctx.fillText(&#39;Vies restante: &#39; + vie, can.width - 130, 20);

    if(trace.length&gt;5){
        for(var i=0;i&lt;trace.length-1;i++) {
       // la position lenngth - 1 est celle de la tête elle n&#39;a pas besoin d&#39;être inclut dans le test avec elle même!
        if(trace[i].x==trace[trace.length-1].x &amp;&amp; trace[i].y==trace[trace.length-1].y){
        collisionTrace= true;
        break;
        }
        }
       
       }
       
       // On vérifie si collision == true
       if(x &lt; 0 || x &gt; (can.width - largeur) || y &lt; 0 || y &gt; (can.height - hauteur) || collisionTrace == true){
        // perte de vie
        timeout = 0;
        ctx.beginPath();
        ctx.fillStyle = &quot;rgba(250,0,0,0.2)&quot;;
        ctx.fillRect(0,0,can.width,can.height);
        ctx.closePath();
        // On réinitialise la trace en effacant les valeurs sauvegardées
       trace = [];
        // On rechoisit une position du serpent
        x = Math.trunc(can.width/largeur/2)*largeur;
        y= Math.trunc(can.height/hauteur/2)*hauteur;
        trace.push({x:x,y:y});
        // On redonne la taille initiale de la trace
        tailleTrace=tailleInitTrace;
        // On rechoisit une autre position pour la pomme
        PommeX=Math.trunc(Math.random()*can.width/largeur)*largeur;
        PommeY=Math.trunc(Math.random()*can.height/hauteur)*hauteur;
        // On décrémente le nombre de vie
        vie--;
        // le test de collision avec le corps a été fait on le remet à faux 
        collisionTrace=false;
        
        if(vie == 0){
        // Affichage la fin de la partie
        ctx.font = &#39;40px Arial&#39;;
        ctx.fillStyle = &#39;#fff&#39;;
        ctx.fillText(&#39;GAME OVER&#39;, can.width / 2 - 130, can.height / 2);
        score = 0;
        vie = 5;
        clearInterval(intervalID);                
        //document.getElementById(&#39;game-over&#39;).play();
        //clearTimeout(intervalID);
        
        }
        }
    

}

//Les Evènements claviers

var haut = document.querySelector(&#39;#Up&#39;);
var bas = document.querySelector(&#39;#Down&#39;);
var droite = document.querySelector(&#39;#Right&#39;);
var gauche = document.querySelector(&#39;#Left&#39;);
var pause = document. querySelector(&#39;#pause&#39;);
var playT;            
var play = document. querySelector(&#39;#play&#39;);
play.addEventListener(&#39;click&#39;,function(){
            if(playT == true){ 
            intervalID = setInterval(Game,150);
            playT = false;
            }
        });
pause.addEventListener(&#39;click&#39;,function(){
            playT = true;
            clearInterval(intervalID);
        }); 
     
var histT;

function keyboadT(){
    haut.addEventListener(&#39;click&#39;,function(){
        if(histT == &quot;bas&quot;){return 0;}
        depX = 0;
        depY = -1;
        histT = &quot;haut&quot;;
    });

    gauche.addEventListener(&#39;click&#39;,function(){
        if(histT == &quot;droite&quot;){return 0;}
        depX = -1;
        depY = 0;
        histT = &quot;gauche&quot;;
    });

    bas.addEventListener(&#39;click&#39;,function(){
        if(histT == &quot;haut&quot;){return 0;}
        depX = 0;
        depY = 1;
        histT = &quot;bas&quot;;
    });

    droite.addEventListener(&#39;click&#39;,function(){
        if(histT == &quot;gauche&quot;){return 0;}
        depX = 1;
        depY = 0;
        histT = &quot;droite&quot;;
    });
    
    /*pause.addEventListener(&#39;click&#39;,function(){
        depX = 0;
        depY = 0;
    });*/
}

function keyboad(e) {
    console.log(e.code);
    switch (e.code){
        case (&#39;ArrowUp&#39;):
            if(hist == &quot;ArrowDown&quot;){break;}
            depX = 0;
            depY = -1;
            hist = e.code;
        break;
        case (&#39;ArrowDown&#39;):
            if(hist == &quot;ArrowUp&quot;){break;}
            depX = 0;
            depY = 1;
            hist = e.code;
        break;
        case (&#39;ArrowRight&#39;):
            if(hist == &quot;ArrowLeft&quot;){break;}
            depX = 1;
            depY =  0;
            hist = e.code;
        break;
        case (&#39;ArrowLeft&#39;):
            if(hist == &quot;ArrowRight&quot;){break;}
            depX = -1;
            depY = 0;
            hist = e.code;
        break;
        case (&#39;Space&#39;):
            depX = 0;
            depY = 0;
            hist = e.code;
        break;
    }
}

   &lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/685732708773252497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/03/snake-game-online.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/685732708773252497'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/685732708773252497'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/03/snake-game-online.html' title='Snake game online '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-5841946060874223496</id><published>2023-03-19T19:05:00.003+05:30</published><updated>2023-03-19T19:05:25.231+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Ebook"/><title type='text'>ikigai book pdf </title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_6QlWOwZoZei84IxJsl50TCfd9KRj6AKOuyOwGBvh6GW0NQhJLuoaIaOVBV-GEDQDMgptiQLK9qmypySuJgtdTbvceUp5jsTIGvLVV3wY8wjvLSOUoBh9HgE2ZmYMK7dZltUPhwkBiU_XchIURMhySskR3o4jM0rnxd3oMfdsUFtNPLndUHOOX7Mhkw/s736/9cf1f9d12ffbb5bf25dc49ff9f3a0bfa.jpg&quot; style=&quot;display: block; padding: 1em 0; text-align: center; &quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; width=&quot;320&quot; data-original-height=&quot;736&quot; data-original-width=&quot;736&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_6QlWOwZoZei84IxJsl50TCfd9KRj6AKOuyOwGBvh6GW0NQhJLuoaIaOVBV-GEDQDMgptiQLK9qmypySuJgtdTbvceUp5jsTIGvLVV3wY8wjvLSOUoBh9HgE2ZmYMK7dZltUPhwkBiU_XchIURMhySskR3o4jM0rnxd3oMfdsUFtNPLndUHOOX7Mhkw/s320/9cf1f9d12ffbb5bf25dc49ff9f3a0bfa.jpg&quot;/&gt;&lt;/a&gt;&lt;/div&gt;
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;Ikigai Book Download&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;h1&gt;Ikigai Book&lt;/h1&gt;
	&lt;p&gt;Ikigai is a Japanese concept that means &quot;a reason for being&quot;. The Ikigai Book is a great resource for anyone interested in learning more about this philosophy and how it can be applied to their own life.&lt;/p&gt;
	&lt;p&gt;Download your copy of the Ikigai Book today!&lt;/p&gt;
	&lt;a href=&quot;https://www.upload-4ever.com/dscnhamik1iv&quot; target=&quot;_blank&quot; download&gt;&lt;button&gt;Download Now (8.5 MB)&lt;/button&gt;&lt;/a&gt;
&lt;/body&gt;
&lt;/html&gt;
</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/5841946060874223496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/03/ikigai-book-pdf.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/5841946060874223496'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/5841946060874223496'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/03/ikigai-book-pdf.html' title='ikigai book pdf '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_6QlWOwZoZei84IxJsl50TCfd9KRj6AKOuyOwGBvh6GW0NQhJLuoaIaOVBV-GEDQDMgptiQLK9qmypySuJgtdTbvceUp5jsTIGvLVV3wY8wjvLSOUoBh9HgE2ZmYMK7dZltUPhwkBiU_XchIURMhySskR3o4jM0rnxd3oMfdsUFtNPLndUHOOX7Mhkw/s72-c/9cf1f9d12ffbb5bf25dc49ff9f3a0bfa.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-1040206904602670794</id><published>2023-03-19T08:46:00.004+05:30</published><updated>2023-03-19T08:47:54.881+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tic tac toe"/><title type='text'>Tic tac toe gameplay online </title><content type='html'>&lt;!DOCTYPE html&gt;
&lt;html&gt;

&lt;head&gt;
  &lt;title&gt;Title of the document&lt;/title&gt;
  &lt;style&gt;
    body {
      background-color: #1c1c1b;
      color: #dfebe2;
      margin: 0;
      top: 0;
      left: 0;
      box-sizing: border-box;
      max-width: 100%;
      max-height: 100vh;

    }

    #container {
      /*     margin-top:20%; */
      display: grid;
      grid-template-columns: repeat(3, 20vw);
      grid-template-rows: repeat(3, 20vw);
      box-sizing: border-box;

    }

    center {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .b {
      border: 1px solid white;

      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 2rem;
    }

    .t {
      border-top: 0;
      border-top-color: red;

    }

    .o {
      border-bottom: 0;
    }

    .l {
      border-left: 0;
    }

    .r {
      border-right: 0;
    }

    .b:hover {
      background: #111211;
    }

    h1 {
      text-align: center;
      margin-bottom: 2%;
      margin-top: 0%;
    }

    span {
      font-size: 3rem;

      /*       font-weight:bold; */
    }

    p {
      margin-top: 3%;
      font-size: 2rem;
      font-style: bold;
      text-align: center;
      visibility: hidden;
      margin-bottom: 2%;
    }

    #reset {

      height: 1.6rem;
      width: 5.6rem;
      background: #08c437;
      color: #1c1c1b;
      font-weight: bold;
      border: none;
      border-radius: 0.2em;
      font-size: 1rem;

    }

    #reset:active {
      background: #02a131;
    }

    h2 {
      text-align: center;
      margin-top: 1%;
      margin-bottom: 1%;
    }

    #des {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #image {
      height: 65px;
      visibility: hidden;
    }

    #count {
      display: flex;
      gap: 10%;
    }

    h3 {
      margin: 0;
    }



    @media only screen and (min-width: 768px) {
      #container {
        /*     margin-top:20%; */
        display: grid;
        grid-template-columns: repeat(3, 100px);
        grid-template-rows: repeat(3, 100px);
        box-sizing: border-box;

      }

      #reset {
        height: 2.1rem;
        width: 6.6rem;
        font-size: 1.2rem;
      }

      #image {
        height: 90px;

      }

      p {
        font-size: 3.2rem;
      }
    }

    @media only screen and (min-width: 414px) and (max-width:699px) {
      #container {
        /*     margin-top:20%; */
        display: grid;
        grid-template-columns: repeat(3, 20vw);
        grid-template-rows: repeat(3, 20vw);
        box-sizing: border-box;

      }

      #reset {
        height: 2.1rem;
        width: 6.6rem;
        font-size: 1.2rem;
      }

    }
  &lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
  &lt;h1&gt;Tic-Tac-Toe&lt;/h1&gt;
  &lt;center id=count&gt;
    &lt;h3 id=X&gt;X Won - 0&lt;/h3&gt;
    &lt;h3 id=O&gt;O Won - 0&lt;/h3&gt;
  &lt;/center&gt;
  &lt;h2 id=turn&gt;&lt;/h2&gt;
  &lt;center&gt;
    &lt;div id=container&gt;
      &lt;div class=&quot;t b l&quot;&gt;&lt;span class=box&gt;&lt;/span&gt;&lt;/div&gt;
      &lt;div class=&quot;t b&quot;&gt;&lt;span class=box&gt;&lt;/span&gt;&lt;/div&gt;
      &lt;div class=&quot;t b r&quot;&gt;&lt;span class=box&gt;&lt;/span&gt;&lt;/div&gt;
      &lt;div class=&quot;l b&quot;&gt;&lt;span class=box&gt;&lt;/span&gt;&lt;/div&gt;
      &lt;div class=&quot;b&quot;&gt;&lt;span class=box&gt;&lt;/span&gt;&lt;/div&gt;
      &lt;div class=&quot;r b&quot;&gt;&lt;span class=box&gt;&lt;/span&gt;&lt;/div&gt;
      &lt;div class=&quot;b l o&quot;&gt;&lt;span class=box&gt;&lt;/span&gt;&lt;/div&gt;
      &lt;div class=&quot;b o&quot;&gt;&lt;span class=box&gt;&lt;/span&gt;&lt;/div&gt;
      &lt;div class=&quot;b o r&quot;&gt;&lt;span class=box&gt;&lt;/span&gt;&lt;/div&gt;

    &lt;/div&gt;
  &lt;/center&gt;
  &lt;div id=des&gt;
    &lt;p id=&quot;v&quot;&gt;nope dude &lt;/p&gt;
    &lt;img id=&quot;image&quot; src=&quot;https://media.tenor.com/-FpRCh0JwYAAAAAi/jinzhan-lily-and-marigold.gif&quot;&gt;
  &lt;/div&gt;
  &lt;center&gt;
    &lt;button id=reset&gt;RESTART&lt;/button&gt;
  &lt;/center&gt;
  &lt;script&gt;

    let over = false;
    let b = document.getElementsByClassName(&quot;b&quot;)
    let Xwins = 0
    let Owins = 0


    Array.from(b).forEach(element =&gt; {
      let box = element.querySelector(&quot;.box&quot;)
      element.addEventListener(&#39;click&#39;, () =&gt; {
        
        if (box.innerHTML == &#39;&#39; &amp;&amp; over == false) {
          box.innerHTML = turn
          if (turn == &#39;O&#39;) {
            box.style.color = &quot;#bd35fc&quot;



          }
          else if (turn == &quot;X&quot;) {
            box.style.color = &quot;#3adb1a&quot;
          }
          change()
          wining()
          document.getElementById(&#39;turn&#39;).innerText = turn + &quot;&#39;s turn&quot;

        }

      })
    })

    let turn = &quot;X&quot;
    document.getElementById(&#39;turn&#39;).innerText = turn + &quot;&#39;s turn&quot;

    const change = () =&gt; {
      if (turn == &quot;X&quot;) {
        return turn = &#39;O&#39;

      }
      else if (turn == &#39;O&#39;) {
        return turn = &quot;X&quot;
      }
    }


    const wining = () =&gt; {
      let pattern = [
        [0, 1, 2],
        [3, 4, 5],
        [6, 7, 8],
        [0, 3, 6],
        [1, 4, 7],
        [2, 5, 8],
        [0, 4, 8],
        [2, 4, 6]
      ]

      let box = document.getElementsByClassName(&#39;box&#39;)
    
      pattern.forEach(e =&gt; {

        if ((box[e[0]].innerText == box[e[1]].innerText) &amp;&amp; (box[e[1]].innerText == box[e[2]].innerText) &amp;&amp; (box[e[0]].innerText !== &quot;&quot;)) {
          document.getElementById(&#39;v&#39;).innerHTML = box[e[0]].innerText + &quot; Won  &amp;nbsp;&quot;

          over = true

          box[e[0]].style.cssText = &quot;color:white; font-size:3.9rem;  text-shadow:0 0 7px #fff,0 0 10px #fff,0 0 21px #fff,0 0 42px #0fa,0 0 82px #0fa,0 0 92px #0fa,0 0 102px #0fa,0 0 151px #0fa;&quot;
          box[e[1]].style.cssText = &quot;color:white; font-size:3.9rem;  text-shadow:0 0 7px #fff,0 0 10px #fff,0 0 21px #fff,0 0 42px #0fa,0 0 82px #0fa,0 0 92px #0fa,0 0 102px #0fa,0 0 151px #0fa;&quot;
          box[e[2]].style.cssText = &quot;color:white; font-size:3.9rem;  text-shadow:0 0 7px #fff,0 0 10px #fff,0 0 21px #fff,0 0 42px #0fa,0 0 82px #0fa,0 0 92px #0fa,0 0 102px #0fa,0 0 151px #0fa;&quot;
          document.getElementById(&#39;v&#39;).style.visibility = &quot;visible&quot;
          document.getElementById(&#39;image&#39;).style.visibility = &quot;visible&quot;
          
          window.navigator.vibrate(500);
          
          if (box[e[0]].innerText == &quot;X&quot;) {
            Xwins++
            document.getElementById(&#39;X&#39;).innerText = &quot;X Won - &quot; + Xwins

          }
          else if (box[e[0]].innerText == &quot;O&quot;) {
            Owins++
            document.getElementById(&#39;O&#39;).innerText = &quot;O Won - &quot; + Owins

          }




        }

        else if ((over == false) &amp;&amp; ((box[0].innerText !== &quot;&quot;) &amp;&amp; (box[1].innerText !== &quot;&quot;) &amp;&amp; (box[2].innerText !== &quot;&quot;) &amp;&amp; (box[3].innerText !== &quot;&quot;) &amp;&amp; (box[4].innerText !== &quot;&quot;) &amp;&amp; (box[5].innerText !== &quot;&quot;) &amp;&amp; (box[6].innerText !== &quot;&quot;) &amp;&amp; (box[7].innerText !== &quot;&quot;) &amp;&amp; (box[8].innerText !== &quot;&quot;))
        ) {

          //(box[e[0]].innerText !== box[e[1]].innerText) ||(box[e[1]].innerText !== box[e[2]].innerText) || (box[e[0]].innerText !== box[e[2]].innerText)

          document.getElementById(&#39;v&#39;).innerHTML = &quot;Draw &quot;
          document.getElementById(&#39;v&#39;).style.cssText = &quot;visibility:visible;&quot;
          document.getElementById(&#39;image&#39;).style.cssText = &quot;display:none;&quot;


          // console.log(box[e[0]].innerText,box[e[1]].innerText,box[e[2]].innerText)
        }
      }



      )
    }

    let btn = document.getElementById(&#39;reset&#39;)
    btn.addEventListener(&quot;click&quot;, () =&gt; {
      let box = document.getElementsByClassName(&#39;box&#39;)
      
      for (i = 0; i &lt; 9; i++) {
        box[i].innerHTML = &quot;&quot;

        over = false
        box[i].style.cssText = &quot;text-shadow:0 0 0 #1c1c1b;&quot;


      }
      document.getElementById(&#39;v&#39;).style.visibility = &quot;hidden&quot;
      document.getElementById(&#39;image&#39;).style.visibility = &quot;hidden&quot;

    })


  &lt;/script&gt;
&lt;/body&gt;

&lt;/html&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/1040206904602670794/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/03/tic-tec-toe-gameplay-online.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/1040206904602670794'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/1040206904602670794'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/03/tic-tec-toe-gameplay-online.html' title='Tic tac toe gameplay online '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-3603318771701707121</id><published>2023-03-17T13:59:00.002+05:30</published><updated>2023-03-17T13:59:53.146+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Losing weight"/><title type='text'>Loose weight use this simple 7 tips in your daily lifestyle </title><content type='html'>&lt;div style=&quot;text-align: left;&quot;&gt;&amp;nbsp;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiThTGZAmf8rkeKI3Fc4mgdw2QJjqIUz5JpOSLL80LP5cJd3rLZJTQZed5ILHmvciZMjCMYhcAtr9KMc9BIs-TZVmwSbefGUzp8xfCxqQK8GvakkCySStQs1b9vrKbSI4W4S9PVl4DuB2t2dWW3jbWmN-1tk9LHYZMABDKAwWi9PLbtV66XmBq_27AzHw/s4242/Picsart_23-03-17_13-58-37-493.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Loose weight&quot; border=&quot;0&quot; data-original-height=&quot;2828&quot; data-original-width=&quot;4242&quot; height=&quot;213&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiThTGZAmf8rkeKI3Fc4mgdw2QJjqIUz5JpOSLL80LP5cJd3rLZJTQZed5ILHmvciZMjCMYhcAtr9KMc9BIs-TZVmwSbefGUzp8xfCxqQK8GvakkCySStQs1b9vrKbSI4W4S9PVl4DuB2t2dWW3jbWmN-1tk9LHYZMABDKAwWi9PLbtV66XmBq_27AzHw/w320-h213/Picsart_23-03-17_13-58-37-493.jpg&quot; title=&quot;Weight loss&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align=&quot;left&quot;&gt;&lt;p dir=&quot;ltr&quot;&gt;Loosing weight 7 tips to lose weight Introduction:&lt;br /&gt;
&lt;/p&gt;
&lt;/div&gt;&lt;p dir=&quot;ltr&quot;&gt;Losing weight is a common goal for many people, but it can be a challenging process. Fortunately, there are many effective ways to lose weight that do not involve extreme diets or excessive exercise. In this article, we will discuss 10 tips to help you lose weight, improve your overall health, and achieve your weight loss goals.&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Tip 1: Set Realistic Goals&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;The first step in any weight loss journey is to set realistic goals. It&#39;s important to understand that losing weight takes time and effort, and it&#39;s unlikely that you will see significant results overnight. Instead of setting a goal to lose a large amount of weight quickly, aim to lose a few pounds each week. This will help you stay motivated and on track towards your long-term weight loss goals.&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Tip 2: Keep a Food Diary&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Keeping a food diary is an effective way to track your food intake and identify areas where you can make improvements. Write down everything you eat and drink throughout the day, and be sure to include portion sizes and calorie counts. This will help you become more aware of your eating habits and make it easier to make healthier choices.&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Tip 3: Drink Plenty of Water&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Drinking plenty of water is essential for weight loss and overall health. Water helps to flush toxins from the body, reduce appetite, and increase metabolism. Aim to drink at least 8 glasses of water per day, and consider replacing sugary drinks with water or herbal tea.&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Tip 4: Eat More Protein&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Protein is an essential nutrient that is important for weight loss and muscle building. Eating protein-rich foods such as lean meats, fish, eggs, and beans can help you feel full for longer and reduce cravings for unhealthy snacks. Try to include a source of protein in every meal, and consider adding protein powder to smoothies or oatmeal for an extra boost.&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Tip 5: Cut Back on Carbs&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Carbohydrates are an important source of energy, but they can also contribute to weight gain when consumed in excess. To lose weight, consider cutting back on refined carbohydrates such as white bread, pasta, and sugar. Instead, focus on eating whole grains, fruits, and vegetables, which are rich in fiber and nutrients.&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Tip 6: Get Enough Sleep&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Getting enough sleep is essential for weight loss and overall health. Sleep deprivation can disrupt hormones that regulate appetite and metabolism, leading to weight gain and increased risk of chronic diseases. Aim to get at least 7-8 hours of sleep per night, and consider creating a relaxing bedtime routine to help you fall asleep more easily.&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Tip 7: Exercise Regularly&lt;/p&gt;
&lt;p dir=&quot;ltr&quot;&gt;Regular exercise is an essential component of weight loss and overall health. Aim to get at least 30 minutes of moderate-intensity exercise per day, such as brisk walking, cycling, or swimming. &lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/3603318771701707121/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/03/loose-weight-use-this-simple-7-tips-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/3603318771701707121'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/3603318771701707121'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/03/loose-weight-use-this-simple-7-tips-in.html' title='Loose weight use this simple 7 tips in your daily lifestyle '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiThTGZAmf8rkeKI3Fc4mgdw2QJjqIUz5JpOSLL80LP5cJd3rLZJTQZed5ILHmvciZMjCMYhcAtr9KMc9BIs-TZVmwSbefGUzp8xfCxqQK8GvakkCySStQs1b9vrKbSI4W4S9PVl4DuB2t2dWW3jbWmN-1tk9LHYZMABDKAwWi9PLbtV66XmBq_27AzHw/s72-w320-h213-c/Picsart_23-03-17_13-58-37-493.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-8146984951454704344</id><published>2023-03-10T15:11:00.004+05:30</published><updated>2023-03-12T09:33:56.259+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="English to hindi translator"/><title type='text'>ENGLISH TO HINDI TRANSLATOR </title><content type='html'>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;English to Hindi Translator&lt;/title&gt;
	&lt;style&gt;
		body {
			font-family: Arial, sans-serif;
		}
		.textbox {
			display: block;
            Color : red;
			margin: 20px 0;
			padding: 5px;
			width: 400px;
			height: 100px;
			resize: none;
			border: 1px solid #ccc;
			border-radius: 5px;
			font-size: 18px;
		}
		.button {
			background-color: #4CAF50;
			color: white;
			padding: 10px 20px;
			border: none;
			border-radius: 5px;
			cursor: pointer;
		}
		.button:hover {
			background-color: #3e8e41;
		}
		.translation {
			font-size: 18px;
			font-weight: bold;
            Color : red ;
			margin-top: 20px;
		}
	&lt;/style&gt;
	&lt;script&gt;
		function translate() {
			// Get the input text
			var inputText = document.getElementById(&quot;input-text&quot;).value;

			// Create a new XMLHttpRequest object
			var xhr = new XMLHttpRequest();

			// Define the onreadystatechange function
			xhr.onreadystatechange = function() {
				if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {
					// Parse the JSON response
					var response = JSON.parse(xhr.responseText);

					// Get the translated text
					var translatedText = response.data.translations[0].translatedText;

					// Set the translated text in the output textbox
					document.getElementById(&quot;output-text&quot;).value = translatedText;
				}
			};

			// Construct the API URL
			var url = &quot;https://translation.googleapis.com/language/translate/v2?key=YOUR_API_KEY&amp;q=&quot; + inputText + &quot;&amp;target=hi&quot;;

			// Open the XMLHttpRequest object and send the request
			xhr.open(&quot;GET&quot;, url, true);
			xhr.send();
		}
	&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;h1&gt;English to Hindi Translator&lt;/h1&gt;
	&lt;textarea id=&quot;input-text&quot; class=&quot;textbox&quot; placeholder=&quot;Enter English text to translate&quot;&gt;&lt;/textarea&gt;
	&lt;button class=&quot;button&quot; onclick=&quot;translate()&quot;&gt;Translate&lt;/button&gt;
	&lt;textarea id=&quot;output-text&quot; class=&quot;textbox translation&quot; placeholder=&quot;Translated Hindi text&quot;&gt;&lt;/textarea&gt;
&lt;/body&gt;
&lt;/html&gt;
</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/8146984951454704344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/03/pinterest-video-downloader.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/8146984951454704344'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/8146984951454704344'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/03/pinterest-video-downloader.html' title='ENGLISH TO HINDI TRANSLATOR '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1849828785720967600.post-2850272464647391119</id><published>2023-03-05T13:55:00.001+05:30</published><updated>2023-03-05T13:59:58.429+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Apk"/><title type='text'>Pikashow apk download </title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitS8u9iziajlEI4hsPvydu84BsFHrdwso6jytGw4AH2crq2dkiVP_R4tEqOPpyXAW_mdg7DlazfzOFbwQVCsYPM2uKS1mXZzW3yjSt5jwlTzvzaJOOcGjnubDKhb9_dlPiJu-j4Q_y-wPfau9QRqHj571XfFQv-77zV2w28t1GBkt_exDVMPLMcq1slA/s736/Picsart_23-03-05_13-50-30-971.jpg&quot; style=&quot;display: block; padding: 1em 0; text-align: center; &quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; width=&quot;320&quot; data-original-height=&quot;736&quot; data-original-width=&quot;736&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitS8u9iziajlEI4hsPvydu84BsFHrdwso6jytGw4AH2crq2dkiVP_R4tEqOPpyXAW_mdg7DlazfzOFbwQVCsYPM2uKS1mXZzW3yjSt5jwlTzvzaJOOcGjnubDKhb9_dlPiJu-j4Q_y-wPfau9QRqHj571XfFQv-77zV2w28t1GBkt_exDVMPLMcq1slA/s320/Picsart_23-03-05_13-50-30-971.jpg&quot;/&gt;&lt;/a&gt;&lt;/div&gt;
&lt;html&gt;
  &lt;head&gt;
    &lt;title&gt;Pikashow APK Download&lt;/title&gt;
    &lt;style&gt;
      body {
        font-family: Arial, sans-serif;
        background-color: #fff;
        Color : #000;
        padding: 20px;
      }

      h1 {
        text-align: center;
        Color : #000;
        margin-bottom: 30px;
      }

      .download-button {
        display: inline-block;
        background-color: #4CAF50;
        color: #fff;
        text-align: center;
        font-size: 16px;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
      }

      .download-link {
        margin: 20px auto;
        text-align: center;
      }
    &lt;/style&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;h1&gt;Pikashow APK Download&lt;/h1&gt;
    &lt;div class=&quot;download-link&quot;&gt;
      &lt;a class=&quot;download-button&quot; href=&quot;https://www.upload-4ever.com/bh5y2jwc7hm7&quot; target=&quot;_blank&quot;&gt;Download Pikashow APK (16.4 MB)&lt;/a&gt;
    &lt;/div&gt;
  &lt;/body&gt;
&lt;/html&gt;
</content><link rel='replies' type='application/atom+xml' href='https://xking360.blogspot.com/feeds/2850272464647391119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://xking360.blogspot.com/2023/03/pikashow-apk-download.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/2850272464647391119'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/1849828785720967600/posts/default/2850272464647391119'/><link rel='alternate' type='text/html' href='https://xking360.blogspot.com/2023/03/pikashow-apk-download.html' title='Pikashow apk download '/><author><name>Arun jat</name><uri>http://www.blogger.com/profile/13787781669447333462</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kRVrMtxeu-ePh8zOK60YB_nnMEjqeWzZ1YaQelLSQ511cv3p58lfRB20PTfkwgkQstgxlRzz_1dnr7-CTI_CNbQOXjoGxsGM2Sx2-hrIxYBRoR2BpUT-rkQ16flSeBe6U-pbWWHOE_1GMUOUkMVku9j8CXYkqDmXVkCvYuDlDaHq/s220/Picsart_23-02-08_10-04-45-238.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitS8u9iziajlEI4hsPvydu84BsFHrdwso6jytGw4AH2crq2dkiVP_R4tEqOPpyXAW_mdg7DlazfzOFbwQVCsYPM2uKS1mXZzW3yjSt5jwlTzvzaJOOcGjnubDKhb9_dlPiJu-j4Q_y-wPfau9QRqHj571XfFQv-77zV2w28t1GBkt_exDVMPLMcq1slA/s72-c/Picsart_23-03-05_13-50-30-971.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>