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