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