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