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