I want to make a heading in a certain colour but only that one heading and nothing else but it isn't working for me.
<html>
<head>
<title> website </title>
<style type="text/css">
body {
color: #0066FF;
background-color: #66FF33 }
</style>
</head>
<body>
<h1> heading </h1>
<h3> sub heading </h3>
<p> abcdefghijklmnopqrstuvwxyz
</body>
</html>
I only want the heading to change colour. If you can also tell me how to individually change the text and sub heading colour it would be nice.