time and date
(function(){ const container = document.getElementById("smalleasy-widget"); if(!container) return; const widget = document.createElement("div"); widget.style.cssText = "display:inline-block;padding:12px;border-radius:10px;background:#f8f8f8;color:#333;font-family:Arial,sans-serif;text-align:center;width:260px;"; widget.innerHTML = ` Powered by SmallEasyTools `; container.appendChild(widget); function updateDateTime(){ const now = new Date(); const dateOptions = { weekday:'long', year:'numeric', month:'long', day:'numeric' }; document.getElementById("smalleasy-date").textContent = now.toLocaleDateString('en-US', dateOptions); document.getElementById("smalleasy-time").textContent = now.toLocaleTimeString('en-US', { hour12:true }); } function renderCalendar(){ const today = new Date(); const monthNames = ["Ja...