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