Answers for "change color based on value html"

3

what is the html code of changing color

<font color="red">This is some text!</font>
Posted by: Guest on February-09-2020
0

how to change color in html element

<style>
  h1 { color: red; }
</style>
<body>
  <!-- 1) Using CSS from internal style-->
  <h2>Title with RED color</h2>
  <!-- 2) Using inline style (try to avoid this) -->
  <h2 style="color: orange;">Title with ORANGE color</h2>
Posted by: Guest on November-22-2021

Code answers related to "change color based on value html"

Browse Popular Code Answers by Language