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