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