Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

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>
 
PREVIOUS NEXT
Tagged: #change #color #html #element
ADD COMMENT
Topic
Name
8+4 =