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