Saturday, November 1, 2025

3D Eye

๐Ÿ”ฑ 3D Eye: เคถिเคต เค•ी เคฆृเคท्เคŸि เคธे เคœुเคก़เคจे เค•ा เคช्เคฐเคคीเค•

"3D Eye" เค•ेเคตเคฒ เคเค• เคกिเคœ़ाเค‡เคจ เคจเคนीं, เคฌเคฒ्เค•ि เคเค• เค†ंเคคเคฐिเค• เคœाเค—เคฐเคฃ เค•ा เคธंเค•ेเคค เคนै। เคฏเคน เคค्เคฐिเคจेเคค्เคฐ เคถिเคต เค•ा เคช्เคฐเคคीเค• เคนै — เคตเคน เคฆृเคท्เคŸि เคœो เคญौเคคिเค• เคธीเคฎाเค“ं เคธे เคชเคฐे เคนै, เคœो เคธเคค्เคฏ, เคšेเคคเคจा เค”เคฐ เคŠเคฐ्เคœा เค•ो เคเค• เคธाเคฅ เคฆेเค–เคคी เคนै।

  • ๐Ÿ•‰️ เคคीเคธเคฐी เค†ंเค– เค†เคค्เคฎเคœ्เคžाเคจ เค•ी เค•ुंเคœी เคนै — เคฏเคน เคนเคฎें เคฌाเคนเคฐी เคญ्เคฐเคฎ เคธे เคฎुเค•्เคค เค•เคฐ เคญीเคคเคฐ เค•ी เคถเค•्เคคि เคธे เคœोเคก़เคคी เคนै।

  • ๐Ÿ”ฅ เคถिเคต เค•ा เคค्เคฐिเคจेเคค्เคฐ เคจ เค•ेเคตเคฒ เคตिเคจाเคถ เค•ा, เคฌเคฒ्เค•ि เคชुเคจเคฐ्เคœเคจ्เคฎ เค”เคฐ เคชเคฐिเคตเคฐ्เคคเคจ เค•ा เคญी เคช्เคฐเคคीเค• เคนै। เคฏเคน เคนเคฎें เคฏाเคฆ เคฆिเคฒाเคคा เคนै เค•ि เคนเคฐ เค…ंเคค เคเค• เคจเคˆ เคถुเคฐुเค†เคค เคนै।










 

Friday, October 31, 2025

Symbolic Rakam Tracker

 


๐Ÿ’“HTML Save Ase Html Work๐Ÿ’—
๐Ÿ‘‡

<!DOCTYPE html>
<html lang="hi">
<head>
  <meta charset="UTF-8">
  <title>Symbolic Rakam Tracker</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <!-- Bootstrap CDN -->
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
  <style>
    .entry-card { margin-bottom: 15px; border-left: 5px solid #007bff; padding: 10px; background: #f8f9fa; }
    .hidden { display: none; }
    #totalBox { font-size: 1.2rem; font-weight: bold; margin-top: 20px; }
  </style>
</head>
<body class="container py-4">

  <h2 class="mb-4">๐Ÿ’  Symbolic Rakam Tracker</h2>

  <div id="entries"></div>

  <div id="totalBox">เค•ुเคฒ เคฐाเคถि: ₹0</div>

  <script>
    let entryCount = 0;
    let total = 0;

    function createEntry(index) {
      const card = document.createElement('div');
      card.className = 'entry-card';
      card.innerHTML = `
        <div class="row g-2">
          <div class="col-md-2">
            <label class="form-label">เค•्เคฐเคฎांเค•</label>
            <input type="text" class="form-control" value="${index + 1}" readonly>
          </div>
          <div class="col-md-5">
            <label class="form-label">เคจाเคฎ</label>
            <input type="text" class="form-control" placeholder="เคจाเคฎ เคฒिเค–ें">
          </div>
          <div class="col-md-5">
            <label class="form-label">เคฐเค•เคฎ</label>
            <input type="number" class="form-control amount" placeholder="₹0" oninput="handleInput(this)">
          </div>
        </div>
      `;
      document.getElementById('entries').appendChild(card);
    }

    function handleInput(input) {
      const allAmounts = document.querySelectorAll('.amount');
      total = 0;
      allAmounts.forEach((inp, i) => {
        const val = parseFloat(inp.value);
        if (!isNaN(val)) total += val;

        // Show next bracket if current has value and next doesn't exist
        if (i === allAmounts.length - 1 && val > 0) {
          createEntry(entryCount++);
        }
      });
      document.getElementById('totalBox').textContent = `เค•ुเคฒ เคฐाเคถि: ₹${total}`;
    }

    // Initial bracket
    createEntry(entryCount++);
  </script>

</body>
</html>


๐Ÿ’ฌ

Wednesday, October 22, 2025

Sunder Sonic Journey

Sunder Sonic Journey
<title>Sunder Sonic Journey</title>
  <style>
    body {
      margin: 0;
      background: linear-gradient(to top, #111, #444);
      color: white;
      font-family: sans-serif;
      overflow: hidden;
    }
    #intro {
      position: absolute;
      top: 40%;
      width: 100%;
      text-align: center;
      font-size: 1.5em;
      animation: fadeOut 5s forwards;
    }
    @keyframes fadeOut {
      0% { opacity: 1; }
      100% { opacity: 0; visibility: hidden; }
    }
    canvas {
      position: absolute;
      top: 0; left: 0;
    }
  </style>
</head>
<body>
  <div id="intro">๐ŸŽง Please wear headphones first. Let the sunder begin…</div>
  <canvas id="visual"></canvas>
  <audio id="player" controls autoplay loop>
    <source src="Greatshiv.MP4" type="audio/mpeg">        ๐Ÿ‘ˆ Replease With Your Audio File 
    Your browser does not support the audio element.
  </audio>

  <script>
    const canvas = document.getElementById('visual');
    const ctx = canvas.getContext('2d');
    canvas.width = window.innerWidth;
    canvas.height = window.innerHeight;

    function drawSymbolicWave() {
      ctx.clearRect(0, 0, canvas.width, canvas.height);
      ctx.beginPath();
      ctx.moveTo(0, canvas.height / 2);
      for (let x = 0; x < canvas.width; x++) {
        ctx.lineTo(x, canvas.height / 2 + Math.sin(x * 0.01 + Date.now() * 0.002) * 50);
      }
      ctx.strokeStyle = '#f0f';
      ctx.lineWidth = 2;
      ctx.stroke();
      requestAnimationFrame(drawSymbolicWave);
    }

    drawSymbolicWave();
  </script>
</body>
</html>




Friday, October 17, 2025

Greatshiv Song

๐ŸŽง Please wear headphones first. Let the sunder begin…

Bhole Bhole


Bham Bham Bhole


Greatshiv Love Forever Come To Love


Love Is the Law, Earth Is the Rhythm From Sky To Soil, From Soul


Love Is the Law, Earth Is the Rhythm A Mantra Remix For The Great


Krishna Song In Language Jeeno Jeeno Kajodo (Remix)



Thursday, October 9, 2025

My Shopping Card With Whatsapp

๐Ÿ’š My Shopping Card With WhatsApp๐Ÿ’š

๐Ÿ‘€ เคเค• เคธुंเคฆเคฐ, เคนเคฒ्เค•ा เค”เคฐ เค‰เคชเคฏोเค—ी Shopping Card เคธिเคธ्เคŸเคฎ — Admin เค”เคฐ User เคฆोเคจों เค•े เคฒिเค เค–ाเคธ!


เคฎुเค–्เคฏ เคฌाเคคें เคœो เค‡เคธ เคช्เคฐोเคŸोเคŸाเค‡เคช เคฎें เคฎिเคฒेंเค—ी ๐Ÿ’“

๐Ÿง‘‍๐Ÿ’ผ เคเคกเคฎिเคจ เค•े เคฒिเค:

  • ๐Ÿ–ผ️ Bulk image upload (100 images เคคเค•)
  • ๐Ÿ“ Name, Price, Stock (Quantity) เคธेเคŸ เค•เคฐเคจा
  • ๐Ÿ“ PDF / Video upload เค•ा เคตिเค•เคฒ्เคช
  • ๐Ÿ“ž WhatsApp เคจंเคฌเคฐ เคธेเคŸ เค•เคฐเคจा (เคนเคฐ เคช्เคฐोเคกเค•्เคŸ เค•े เคธाเคฅ เคฆिเค–ेเค—ा)
  • ๐Ÿ“Š เคช्เคฐोเคกเค•्เคŸ details เค•ो XLS export เค•เคฐเคจे เค•ा เค‘เคช्เคถเคจ

๐Ÿ‘ค เคฏूเคœเคฐ เค•े เคฒिเค:

๐ŸŒฟ General Features:

  • ๐Ÿ“Œ Fixed Header & Footer
  • ๐Ÿƒ Header เคฎें Animated Leaf & Greenery Effect (เคฆिเคจ/เคฐाเคค เค•े เคนिเคธाเคฌ เคธे เคฌเคฆเคฒเคคा)
  • ๐ŸŒ Website Logo / Favicon Support
  • ⚙️ Install Setup Progress Bar with motivational lines
  • ๐ŸŽ‰ Complete เคนोเคจे เคชเคฐ “Congratulations” message

๐Ÿ“ Assets Details:

  • assets/logo.png — เค†เคชเค•ा เคตेเคฌเคธाเค‡เคŸ เคฒोเค—ो
  • assets/leaf-day.gif — เคฆिเคจ เคตाเคฒा animated leaf
  • assets/leaf-night.gif — เคฐाเคค เคตाเคฒा animated leaf
  • assets/qr.png — QR เค•ोเคก (GPay / PhonePe / Paytm)
๐Ÿชถ Edited with ❤️ by GREATSHIV | Designed in Notepad++













 ๐Ÿ‘€
  
๐Ÿ‘   DOWNLOAD  ๐Ÿ’—
 
 ๐Ÿ’ฌ



๐Ÿ™ Support Us

Your small contribution helps us keep creating content ❤️

 Choice
Donate via PayPal.me

๐Ÿ‡ฎ๐Ÿ‡ณ Donate via UPI:


UPI QR Code

UPI ID:8699335574@ybl

✨ All modifications are perfectly supported in Notepad++. You can edit any file and replace the code with your own  image for a clean and customized look.

Edited with ❤️ by GREATSHIV


Friday, October 3, 2025

UPI Plugin For Wordpress

UPI Plugin For WordPress: 


https://drive.google.com/file/d/19P1cnzDumb7k0FyQrcJx3GTNdyR-5v5r/view?usp=sharing 

Download

Information: 

UPI Link Work G Pay Phonepe UPI Paytm


๐Ÿ™ Support Us

Your small contribution helps us keep creating content ❤️

Choice 
Donate via PayPal.me

๐Ÿ‡ฎ๐Ÿ‡ณ Donate via UPI:

Choice 

UPI QR Code

UPI ID:8699335574@ybl

Wednesday, October 1, 2025

Whatsapp Shop HTML Page





 
 Animated Shop Card, With HTML JS CSS upload zip files Coming soon 


Write your detailed product information here. Explain what the user will get.Shop With Web To Whats App Without Buy Any Payment Getaway, Use Owen  Style PayPal Simpal Secure

  • High Quality PNG File
  • Instant Download
  • Size: 1080x1080 pixels

More Information

Further In Image Zoom And Test, Now Its Test Only Available Whats-app To Buy,PayPal, Gpay, Phonepe Coming Soon..

๐Ÿ™ Support Us

Your small contribution helps us keep creating content ❤️


Donate via PayPal.me

๐Ÿ‡ฎ๐Ÿ‡ณ Donate via UPI:


UPI QR Code

UPI ID: 8699335574@ybl




This is where you can write even more details, spiritual significance, or usage instructions. This content appears below the main product section.

Follow Us @soratemplates

Blogger Templates

-