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