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