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