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