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