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