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