Question:While rendering the following code, what is the role of "src" propery?@font-face {
font-family: "calibriforh1";
src: local("calibri"), url(calibri.woff);
}
h1 { font-family: "calibriforh1", arial, sans-serif; }
A It's for searching the user's system for a "calibri" font, and if it does not exist, it will load the font from the server instead.
B t's for searching the user's system for a "calibri" font, and if it does not exist, it will load user's system's default font instead.
C It's for loading the user's system's default font.
D None