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