I have implemented CSS code in an HTML page to define the color values of H1 and H2 elements.
<style type="text/css">
img {border-style: none;}
H1 {color: "#33CCFF"}
H2 {color: "#33CCFF"}
</style>
While this setup works well on Internet Explorer, it fails to render correctly on Chrome, Safari, and Firefox.
Any suggestions on how to resolve this compatibility issue for all browsers?
Thank you