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