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