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