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