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