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