html specific class color

Solutions on MaxInterview for html specific class color by the best coders in the world

showing results for - "html specific class color"
Helena
15 Apr 2017
1<!-- in the head element -->
2<style> h1 { color:blue; } </style>
3
4<!-- in the body element -->
5<h1> text in blue because all "h1" element is in blue </h1>