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