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