var d = new Date();
document.getElementById('time').innerHTML = d.getHours() + ':' + d.getMinutes();
When I view the code in a browser from my home in London, I see the UTC+1 time:
<div id="time">01:07</div>
I'm pretty sure I see UTC+1 time because it is the time of my system's clock. For somebody viewing the code in Florida, the time would read 20:07 (UTC-4).
How can I force the time output to be UTC+1 for everyone?