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