In the < h1 > tag, when I change any font family for any block of text (or a division), and open it in the browser, the font-family does not change. There is no change at all in h1, that I had applied it to.
Following is my HTML code:
<h1 align="center" class="login">
LOG IN</h1><hr /><br />
This is my CSS code:
.login
{
color:Black;
font-family:Calibri;
font-size:xx-large;
font-weight: bold;
}
The output that I get is as follows:
I changed the font to Calibri also. But, no change was reflected. The output always shows the same font family. I do not understand, where the problem could be?