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