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