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