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