CODIGO FUENTE
ELEMENTO h1
<>
<h1 id="mensaje"><script>document.getElementById("mensaje").innerHTML=msj;</script></h1>
ELEMENTO DE FECHA Y HORA
<p id="hora"><script>document.getElementById("hora").innerHTML=fecha;</script></p>
PROPIEDAD LOCATION
<p id="local"> </p>
<script> var x = location.href;
document.getElementById("local").innerHTML=x;
</script>
Resultado:
PROPIEDAD ALTO Y ANCHO
<p id="medida"> </p>
<script>
var w=screen.width;
var h=screen.heigth;
document.getElementById("medida").innerHTML="El ancho de pantalla es: "+w+"px y el alto es: "+ h+"px";
</script>
Resultado: