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