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