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