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