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