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