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