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