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