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