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