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