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