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