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