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