<!DOCTYPE html>
<html>
<body>
<h1>The Document Object</h1>
<h2>The documentMode Property</h2>
<p>The document mode is:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = document.documentMode;
</script>
</body>
</html>