In this article we will learn about some of the frequently asked HTML programming questions in technical like “how to change h1 color in html” Code Answer’s. When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. Error or stack handling on html was simple and easy. An error message with filename, line number and a message describing the error is sent to the browser. This tutorial contains some of the most common error checking methods in HTML. Below are some solution about “how to change h1 color in html” Code Answer’s.
how to change h1 color in html
xxxxxxxxxx
1
<h1 style="color: red;">
2
This is a Level1 Heading
3
</h1>
how to change font color of h2 tag in html
xxxxxxxxxx
1
<!doctype html>
2
<html>
3
<head>
4
<title>shivam the new hacker</title>
5
<style>
6
h2{font color="yellow"}
7
</style>
8
</head>
9
<body>
10
abc
11
</body>
12
<html>
13