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