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