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