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