Difference between revisions of "HTML"
Jump to navigation
Jump to search
(Created page with "==Color== The old <font> command is deprecated now, because the experts like CSS, putting all the style elements in a section at the front of the webpage. So here is the way t...") |
(No difference)
|
Latest revision as of 12:45, 6 September 2024
Color
The old command is deprecated now, because the experts like CSS, putting all the style elements in a section at the front of the webpage. So here is the way to change font color:
<style type="text/css"> .orange_text {color: orange} </style> <p>This is my text <span class="orange_text"> and these words are different</span></p>,