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