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