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