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