My website is currently using the font-family Roboto with two different font types (400 and 500i).
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500i" rel="stylesheet">
Even though I have both fonts available, I am struggling to implement the 500i variant in my CSS:
p {
font-family: 'Roboto', sans-serif;
}
Unfortunately, this setup only allows me to use the 400 font. How can I incorporate the 500i without losing access to the 400?