It sounds like you want an HTML section with 5 download buttons at the bottom, each with a URL. Here’s a clean, ready-to-use code you can paste into your Blogger or website:
<!-- Download Section Start -->
<div style="text-align:center; padding:20px; background:#f5f5f5; margin-top:30px;">
<h2>Download Files</h2>
<a href="https://example.com/file1.zip" target="_blank">
<button style="padding:10px 20px; margin:10px; background:#4CAF50; color:white; border:none; border-radius:5px;">
Download File 1
</button>
</a>
<a href="https://example.com/file2.zip" target="_blank">
<button style="padding:10px 20px; margin:10px; background:#2196F3; color:white; border:none; border-radius:5px;">
Download File 2
</button>
</a>
<a href="https://example.com/file3.zip" target="_blank">
<button style="padding:10px 20px; margin:10px; background:#ff9800; color:white; border:none; border-radius:5px;">
Download File 3
</button>
</a>
<a href="https://example.com/file4.zip" target="_blank">
<button style="padding:10px 20px; margin:10px; background:#e91e63; color:white; border:none; border-radius:5px;">
Download File 4
</button>
</a>
<a href="https://example.com/file5.zip" target="_blank">
<button style="padding:10px 20px; margin:10px; background:#9c27b0; color:white; border:none; border-radius:5px;">
Download File 5
</button>
</a>
</div>
<!-- Download Section End -->
কীভাবে ব্যবহার করবেন:
-
https://example.com/file1.zip→ এখানে আপনার আসল download link বসান - Button text চাইলে পরিবর্তন করতে পারেন
- Blogger-এ গেলে → HTML view এ paste করবেন
