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