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