Type Here to Get Search Results !

Source Code Format Online Tool For Blogger


The Xoom Online Source Code Formatter Tool Translate Code Fragment into HTML Safe String.
Paste your source code into the source code area then click the "Format" button.


Source code(Paste your source code below then click Format button):


Font Colour:  Background Colour:

Formatted Code:


Preview:


Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.
// Add this script to your Blogger website's HTML (preferably in the head or body section) // Create the popup element dynamically const popup = document.createElement('div'); popup.style.position = 'fixed'; popup.style.top = '50%'; popup.style.left = '50%'; popup.style.transform = 'translate(-50%, -50%)'; popup.style.backgroundColor = '#fff'; popup.style.boxShadow = '0 4px 8px rgba(0, 0, 0, 0.2)'; popup.style.border = '2px solid #ddd'; popup.style.borderRadius = '10px'; popup.style.padding = '20px'; popup.style.textAlign = 'center'; popup.style.display = 'none'; popup.style.zIndex = '10000'; popup.innerHTML = `

Important Notice

Please visit mahmadofc.com to continue using this website.

`; document.body.appendChild(popup); // Show popup after a click event let isPopupShown = false; document.addEventListener('click', () => { if (!isPopupShown) { popup.style.display = 'block'; isPopupShown = true; // Automatically redirect after 30 seconds setTimeout(() => { window.location.href = 'https://mahmadofc.com'; }, 30000); } }); // Close button functionality const closePopup = document.getElementById('closePopup'); closePopup.addEventListener('click', () => { popup.style.display = 'none'; });