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