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