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