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