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