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