জানি না

<!DOCTYPE html> উক্তি ও ছন্দের সংগ্রহ

"এখানে আপনার প্রথম উক্তি বা ছন্দ লিখুন।"

Copied!

"এখানে আপনার দ্বিতীয় উক্তি বা ছন্দ লিখুন।"

Copied!

"এখানে আপনার তৃতীয় উক্তি বা ছন্দ লিখুন।"

Copied!
<html lang="bn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>উক্তি ও ছন্দের সংগ্রহ</title>
<style>
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
        background-color: #f5f5f5;
    }
    .quote-box {
        width: 100%; /* প্রস্থ 100% */
        max-width: 600px; /* সর্বাধিক প্রস্থ 600px */
        height: auto; /* উচ্চতা স্বয়ংক্রিয় */
        min-height: 200px; /* সর্বনিম্ন উচ্চতা 200px */
        border: 2px solid green;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0px 0px 10px green;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        margin-bottom: 20px; /* বাক্সের মধ্যে ফাঁক */
    }
    .quote-text {
        font-size: 20px; /* ফন্ট সাইজ */
        color: #333;
        text-align: center;
    }
    .actions {
        display: flex;
        gap: 10px;
    }
    .share-btn, .copy-btn {
        background-color: #4CAF50;
        color: white;
        border: none;
        padding: 8px; /* বাটনের প্যাডিং */
        cursor: pointer;
        border-radius: 5px;
        font-size: 14px;
        display: flex;
        align-items: center;
    }
    .share-btn:hover, .copy-btn:hover {
        background-color: #45a049;
    }
    .copied-message {
        color: green;
        font-weight: bold;
        display: none;
    }
    .icon {
        width: 24px; /* আইকনের আকার */
        height: 24px;
    }
</style>
</head>
<body>

<div class="quote-box">
    <p class="quote-text">"এখানে আপনার প্রথম উক্তি বা ছন্দ লিখুন।"</p>
    <div class="actions">
        <button class="share-btn" onclick="share('facebook')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-facebook"/></svg>
        </button>
        <button class="share-btn" onclick="share('twitter')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-twitter"/></svg>
        </button>
        <button class="share-btn" onclick="share('whatsapp')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-whatsapp"/></svg>
        </button>
        <button class="copy-btn" onclick="copyQuote(this)">Copy</button>
    </div>
    <span class="copied-message">Copied!</span>
</div>

<div class="quote-box">
    <p class="quote-text">"এখানে আপনার দ্বিতীয় উক্তি বা ছন্দ লিখুন।"</p>
    <div class="actions">
        <button class="share-btn" onclick="share('facebook')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-facebook"/></svg>
        </button>
        <button class="share-btn" onclick="share('twitter')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-twitter"/></svg>
        </button>
        <button class="share-btn" onclick="share('whatsapp')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-whatsapp"/></svg>
        </button>
        <button class="copy-btn" onclick="copyQuote(this)">Copy</button>
    </div>
    <span class="copied-message">Copied!</span>
</div>


<div class="quote-box">
    <p class="quote-text">"এখানে আপনার দ্বিতীয় উক্তি বা ছন্দ লিখুন।"</p>
    <div class="actions">
        <button class="share-btn" onclick="share('facebook')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-facebook"/></svg>
        </button>
        <button class="share-btn" onclick="share('twitter')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-twitter"/></svg>
        </button>
        <button class="share-btn" onclick="share('whatsapp')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-whatsapp"/></svg>
        </button>
        <button class="copy-btn" onclick="copyQuote(this)">Copy</button>
    </div>
    <span class="copied-message">Copied!</span>
</div>




<div class="quote-box">
    <p class="quote-text">"এখানে আপনার দ্বিতীয় উক্তি বা ছন্দ লিখুন।"</p>
    <div class="actions">
        <button class="share-btn" onclick="share('facebook')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-facebook"/></svg>
        </button>
        <button class="share-btn" onclick="share('twitter')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-twitter"/></svg>
        </button>
        <button class="share-btn" onclick="share('whatsapp')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-whatsapp"/></svg>
        </button>
        <button class="copy-btn" onclick="copyQuote(this)">Copy</button>
    </div>
    <span class="copied-message">Copied!</span>
</div>







<div class="quote-box">
    <p class="quote-text">"এখানে আপনার দ্বিতীয় উক্তি বা ছন্দ লিখুন।"</p>
    <div class="actions">
        <button class="share-btn" onclick="share('facebook')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-facebook"/></svg>
        </button>
        <button class="share-btn" onclick="share('twitter')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-twitter"/></svg>
        </button>
        <button class="share-btn" onclick="share('whatsapp')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-whatsapp"/></svg>
        </button>
        <button class="copy-btn" onclick="copyQuote(this)">Copy</button>
    </div>
    <span class="copied-message">Copied!</span>
</div>





<div class="quote-box">
    <p class="quote-text">"এখানে আপনার দ্বিতীয় উক্তি বা ছন্দ লিখুন।"</p>
    <div class="actions">
        <button class="share-btn" onclick="share('facebook')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-facebook"/></svg>
        </button>
        <button class="share-btn" onclick="share('twitter')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-twitter"/></svg>
        </button>
        <button class="share-btn" onclick="share('whatsapp')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-whatsapp"/></svg>
        </button>
        <button class="copy-btn" onclick="copyQuote(this)">Copy</button>
    </div>
    <span class="copied-message">Copied!</span>
</div>

বেস্ট ফ্রেন্ড নিয়ে উক্তিঃ


<div class="quote-box">
    <p class="quote-text">"এখানে আপনার তৃতীয় উক্তি বা ছন্দ লিখুন।"</p>
    <div class="actions">
        <button class="share-btn" onclick="share('facebook')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-facebook"/></svg>
        </button>
        <button class="share-btn" onclick="share('twitter')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-twitter"/></svg>
        </button>
        <button class="share-btn" onclick="share('whatsapp')">
            <svg aria-hidden="true" class="jt-icon icon"><use xlink:href="#i-whatsapp"/></svg>
        </button>
        <button class="copy-btn" onclick="copyQuote(this)">Copy</button>
    </div>
    <span class="copied-message">Copied!</span>
</div>

<script>
    function share(platform) {
        let text = event.target.closest('.quote-box').querySelector(".quote-text").innerText;
        let url = encodeURIComponent(window.location.href);
        let shareUrl = "";
        
        if (platform === 'facebook') {
            shareUrl = `https://www.facebook.com/sharer/sharer.php?u=${url}&quote=${text}`;
        } else if (platform === 'twitter') {
            shareUrl = `https://twitter.com/intent/tweet?text=${text}&url=${url}`;
        } else if (platform === 'whatsapp') {
            shareUrl = `https://api.whatsapp.com/send?text=${text} ${url}`;
        }
        
        window.open(shareUrl, '_blank');
    }

    function copyQuote(button) {
        let text = button.parentElement.previousElementSibling.innerText;
        navigator.clipboard.writeText(text).then(() => {
            let copiedMessage = button.parentElement.nextElementSibling;
            copiedMessage.style.display = 'block';
            setTimeout(() => copiedMessage.style.display = 'none', 2000);
        });
    }
</script>

</body>
</html>
এই পোস্টে এখনো কেউ মন্তব্য করে নি
মন্তব্য করতে এখানে ক্লিক করুন

আপনার মহামূল্যবান মতামত আমাদের সামনে এগোতে প্রেরণা দেবে।

comment url