change color of a tag in html code example
Example 1: html link color
<a href="Link Here" style="color: Color Here"><b>Link Name</b></a> <!--- You dont need the bold tags btw ---!>
Example 2: how to remove link blue color from a tag using css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 3: how to change color in html
<font color="red">This is some text!</font>
Example 4: how to change hyperlink color in css
a {
background-color: red;
color: white;
padding: 1em 1.5em;
text-decoration: none;
text-transform: uppercase;
}
Example 5: how to change color in html
<body>
<!-- style color (hex color) + the text -->
<h1 style ="color: #000000; "> Apples <em>is a tech company</em></h1>
</body>