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