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