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