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