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