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