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