Use on the webTotal Use [ 5585 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/a546f882b7a7c2d6c1bd250bc5e954fc?family=Poppl+College+%28R%29+2+Regular" 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/a546f882b7a7c2d6c1bd250bc5e954fc?family=Poppl+College+%28R%29+2+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Poppl College (R) 2 Regular";
src: url("https://db.onlinewebfonts.com/t/a546f882b7a7c2d6c1bd250bc5e954fc.eot");
src: url("https://db.onlinewebfonts.com/t/a546f882b7a7c2d6c1bd250bc5e954fc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/a546f882b7a7c2d6c1bd250bc5e954fc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/a546f882b7a7c2d6c1bd250bc5e954fc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/a546f882b7a7c2d6c1bd250bc5e954fc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/a546f882b7a7c2d6c1bd250bc5e954fc.svg#Poppl College (R) 2 Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Poppl College (R) 2 Regular";