<style> body { background-color: lightgrey; color: blue; } h1 { background-color: black; color: white; width:80%; } <style> <script> alert(document.documentElement.innerHTML); var x; x = document.getElementsByTagName("hr"); document.getElementById("demo2").innerHTML=x.length; y = document.getElementsByTagName("hr"); document.getElementById("demo3").innerHTML = "Number of breaks: " + y.length; </script>
Return to Table of Contents