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