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