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