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