Answer the question
In order to leave comments, you need to log in
How to include multiple fonts in html?
How to use different fonts on the same site?
I connect through Google fonts 3 types of one font
<link href="(тут https) fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,[email protected],400;0,500;1,700&display=swap" rel="stylesheet">
font-family: 'IBM Plex Sans', sans-serif;
<p>
regular 400
<p>
bold 700 italic
<p>
Answer the question
In order to leave comments, you need to log in
That is, how to prescribe regular 400 font for one tag, and bold 700 italic for another tag, and put one in the Open sea font at all?
p.one {
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 400;
}
p.two {
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 700;
font-style: italic;
}
p.three {
font-family: 'Open Sea', sans-serif;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question