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