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