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