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