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