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