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