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