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