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