Internal Styles - Universal

How to set internal style for html tags?
I want all similar html tag to have a common style.
i.e e.g: I want text inside every <font> tag to look bold?

Explanation

Example :

<head>
<style>
a
{
color: green;
}
</style>
</head>

If we use internal styles like this, the style will take effect for the tag through out the page. That's all the "a" tag used in the page will have the style. This page defines the style as explained above. So we can see how a "a" tag looks like

Result:



Ask Questions

Ask Question