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