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