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