<!DOCTYPE html>
<html>
<body>
<h1 id="myH1">The Element Object</h1>
<h2>The style Property</h2>
<script>
document.getElementById("myH1").style.color = "red";
</script>
</body>
</html>