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