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