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