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