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