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