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