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