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