I am looking at the CSS code behind a page where they have the roboto font is quoted. Like this:
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
As far as I know, non-generic family names don't need to be quoted. So I kinda don't get why they didn't quote arial but they did roboto. Would it still work if they didn't quote roboto? Like this:
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
Thanks.