Hello, I am trying to change the font of an H1 text by trying to inject this css code
@font-face {
font-family: 'title';
src:url('https://fonts.googleapis.com/css2?family=Aref+Ruqaa&display=swap')
}
#block-yui_3_17_2_1_1691201452504_2355{
font-family: “title” !important;
}
The code works when I change the "#block..." into "h1" however I have other H1 text that I don't want to be affected by the font. Is there something wrong with my css code?