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