DOCUMENT-PROPERTY
Run
<!doctype html>
	<head>
		<style>
			/* CSS comes here */
			
		</style>
		<title>Document Properties</title>
	</head>
	<body>
		<h3>Document Properties Example</h3>

		<script>
		    
			document.write(document.domain +"<br>")
			document.write(document.lastModified +"<br>")
			document.write(document.documentMode +"<br>")
			document.write(document.title +"<br>")
			document.write(document.url +"<br>")

		</script>
	</body>
</html>