You can't load content from a different domain than your own through JavaScript. The JS security policy prevents it.
"In computing, the same origin policy is an important security concept for a number of browser-side programming languages, such as JavaScript. The policy permits scripts running on pages originating from the same site – a combination of scheme, hostname, and port number[1 – to access each other's methods and properties with no specific restrictions, but prevents access to most methods and properties across pages on different sites.[1]"
-- Wikipedia, from W3C
Shazbot suggests an iframe, but iframes are deprecated. Use objects :
<div class="timeContainer" style="background:#333; color:#090; padding:10px 0;">
<div style="text-align:center; width:100%;">Current Date and Time</div> <!-- Heading, replaceable with hx tag -->
<!--[if IE]>
<object classid="clsid:25336920-03F9-11CF-8FD0-00AA00686F13" data="your.url/" style="width:100%; height:19px;">
<p>backup content</p>
</object>
<![endif]-->
<!--[if !IE]> <-->
<object type="text/html" data="your.url/" style="width:100%; height:19px;">
<p>backup content</p>
</object>
<!--> <![endif]-->
</div> <!-- timeContainer -->
Alternatively, you can use cURL (if your server supports it) through PHP. I'm not sure about Python, but I assume python can make use of cURL as well.