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