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