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