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