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