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