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