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