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