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