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