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