<!DOCTYPE html>
<html>

  <head>
    <script data-require="moment.js@2.10.2" data-semver="2.10.2" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script>
    <link rel="stylesheet" href="style.css" />
    <script src="script.js"></script>
  </head>

  <body>
    <h1 id="myid"></h1>
    <h1 id="myid1"></h1>
  </body>

</html>
// Code goes here
window.onload = function()
{
  var title = document.getElementById("myid");
  var timenow = document.getElementById("myid1");
  
  var timestamp = 1382086394000;
  
  var time = moment(timestamp).format("DD-MM-YYYY h:mm:ss");
  
  title.textContent = "Format example: " + time;
  
  window.setInterval(function() {
    timenow.textContent = "Real time: " + moment().format("h:mm:ss");
  }, 1000);
  
}
/* Styles go here */