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