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