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