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