Use on the webTotal Use [ 4520 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/33c951c3016838e2cef00c3e961fb35c?family=Popo+Font" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/33c951c3016838e2cef00c3e961fb35c?family=Popo+Font);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Popo Font";
src: url("https://db.onlinewebfonts.com/t/33c951c3016838e2cef00c3e961fb35c.eot");
src: url("https://db.onlinewebfonts.com/t/33c951c3016838e2cef00c3e961fb35c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/33c951c3016838e2cef00c3e961fb35c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/33c951c3016838e2cef00c3e961fb35c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/33c951c3016838e2cef00c3e961fb35c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/33c951c3016838e2cef00c3e961fb35c.svg#Popo Font")format("svg");
}
2CSS rules to specify fonts
font-family: "Popo Font";