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