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