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