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