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