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