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