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