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