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