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