As a beginning coder, I have encountered a small issue. In my HTML document, I attempted to set the font types of my paragraphs and headings to Arial using CSS. The code snippet is as follows:
h4{
font-family
arial san-serif;
}
However, when I run the code, the font does not change.
I am curious as to why this might be happening. Could it be that I do not have the Arial font installed on my computer? If so, how can I address this issue? Any assistance would be greatly appreciated.
P.S. It may be helpful to know that I am using Notepad++ for coding.