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