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