how to chnage font colour of h1 in html code example
Example 1: how to change font colour in html
<font color="red">
Lorem Ipsum
</font>
Example 2: how to change font color of h2 tag in html
<!doctype html>
<html>
<head>
<title>shivam the new hacker</title>
<style>
h2{font color="yellow"}
</style>
</head>
<body>
abc
</body>
<html>