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