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