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