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