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