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