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