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