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