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