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