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