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