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