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