Specific font on all page

Hello.
I’m trying to put a font in my page. It works.
But I do not know how to apply it to all the text. I get there with, H1, H2, …
But then, the text is always centered.
How to do ?
Thanks for your help

Head :

css :

h3 {
font-family: ‘New Transport AA WEB’;
font-weight: bold;
font-style: normal;
text-align: center;
}
h5 {
font-family: ‘New Transport AA WEB’;
font-weight: bold;
font-style: normal;
text-align: center;
}
h6 {
font-family: ‘New Transport AA WEB’;
font-weight: ;
font-style: normal;
text-align: center;
}

I already tried :

font-family: ‘New Transport AA WEB’, arial, sans-serif;
But it does not work

Thanks
Stephane

If I understand what you’re asking, you want to apply a font to all the text?
Try this

body {
   font-family: ‘New Transport AA WEB’, arial, sans-serif; 
}
2 Likes

Thanks for your help !
But that does not work.
I have to put it in css?
Thanks again

Yes it needs to go into the CSS (site wide or page).

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.