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