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