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