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