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