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