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